我有一点问题:
我在主窗口中有一个视图控制器和一个tabbarcontroller的视图。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
// Override point for customization after application launch.
// Add the tab bar controller's current view as a subview of the window
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
在这个视图中,我有大约10个标签。
只要我将Interface-Builder上的1个Label与控制器中的UILabel连接起来,我就会收到SIGBART
错误。
这是我的代码:
#import <UIKit/UIKit.h>
@interface SelfViewController : UIViewController
{
IBOutlet UILabel *id2;
IBOutlet UILabel *username;
IBOutlet UILabel *vorname;
IBOutlet UILabel *nachname;
IBOutlet UILabel *email;
}
@end
我做错了什么?
答案 0 :(得分:0)
这是一个非常简单但非常令人沮丧的解决方案: https://discussions.apple.com/thread/1598422?threadID=1598422