从 iOS8 和 Xcode 6.0.1 开始,我遇到了一个问题,我的警报对话框的标题没有出现。所以我将我的 UIAlertView 更改为 UIAlertController 但我有同样的问题......
我的警报标题总是为零,并且显示非常难看,因为我没有分隔线。
你知道我为什么有这个吗?
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"title" message:@"message" preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
[self dismissViewControllerAnimated:YES completion:nil];
}]];
[self presentViewController:alert animated:YES completion:nil];
但这就是结果
(lldb) po alert.title
nil
(lldb) po alert.message
message
谢谢你。