UIAlertView
我在 iOS7 上有一个问题。当我启动我的应用程序时,它会崩溃并显示以下消息:
*** Assertion failure in -[UIKeyboardTaskQueue performTask:], /SourceCache/UIKit_Sim/UIKit-2903.2/Keyboard/UIKeyboardTaskQueue.m:388
错误发生在以下行:
- (IBAction)updatePositions:(id)sender{
_alert = [[UIAlertView alloc] initWithTitle:@"text" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil];
[_alert show]; <====== IT CRASHS HERE
[NSThread detachNewThreadSelector:@selector(updateDataThread) toTarget:self withObject:nil];
}
我正在使用 ARC,属性_alert
设置定义为:@property (nonatomic,strong)
这个错误看起来很奇怪,因为在 iOS6 上代码运行良好,我不知道在 iOS7 上应该有什么不同。
有谁知道错误可能是什么?
提前致谢。