我搜索了这个,唯一的解决方案似乎来自 UIAlertViewDelegate。我不想这样做只是为了消除粗体文字。
我用来弹出警报视图的代码如下:
NSString* errPrompt = @"some text here, anything that will not show bold :)";
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:title
message:errPrompt
delegate:nil
cancelButtonTitle:[self getUiText:"OK"]
otherButtonTitles:nil];
[alert show];