在我的应用程序中是一个非常非常乏味的错误!几乎每次我构建我的应用程序时,我都会收到“EXC_BAD_ACCESS”错误!没关系,可能会出现错误,但如果我再次尝试构建应用程序,错误会再次出现,但在另一行代码上!!
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UIStoryboard *mainStoryboard = nil;
if ([[UIScreen mainScreen] bounds].size.height <= 480) {
mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
} else {
mainStoryboard = [UIStoryboard storyboardWithName:@"Main4er" bundle:nil];
}
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[self.window setRootViewController:[mainStoryboard instantiateInitialViewController]];
[self.window makeKeyAndVisible]; // HERE THE ERROR COMES SOMETIMES
return YES; }
我不知道我的错在哪里!我不使用发布,保留 - 我在开始开发应用程序时将其关闭!
有时错误出现在这样的行中:
UILabel * labelNiederlage = [[UILabel alloc] initWithFrame:CGRectMake(243, -2, 40, 26)];
有人可以帮助我吗?