简单的UILabel错误?

时间:2011-08-06 10:25:34

标签: iphone ios uilabel

我有一点问题:

我在主窗口中有一个视图控制器和一个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

我做错了什么?

1 个答案:

答案 0 :(得分:0)

这是一个非常简单但非常令人沮丧的解决方案: https://discussions.apple.com/thread/1598422?threadID=1598422