私はこれを検索しましたが、唯一の解決策は 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];