我试图在我的应用中显示一条简单的提醒消息。我使用Apple推荐的代码,但每次“取消”按钮显示时都没有文本。我不相信我有任何其他代码可以覆盖默认的警报显示。
可以看到屏幕截图here。
这是我显示提醒的代码:
NSString *alertMessage = [NSString stringWithFormat:@"No results found for '%@'.", @"TEST"];
UIAlertView *theAlert = [[UIAlertView alloc] initWithTitle:@"Search Error"
message:alertMessage
delegate:nil
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil];
[theAlert show];
当我使用NSLog(@"%@", [theAlert buttonTitleAtIndex:0]);
记录标题时,它会输出"取消"很好。
答案 0 :(得分:0)
我想发表评论,但我的声誉很低......无论如何,我对UIButton有类似的问题,我想出来,这是Xcode 6中的错误。你试过Xcode 5吗?