如何显示消息“哪些帐户将从这些最佳做法中受益最多?想想,添加客户名称并自行增压!”如弹出式显示一样?
答案 0 :(得分:1)
如果你在谈论iOS SDK中的弹出窗口,你需要:
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle: @"Announcement"
message: @"Which accounts will benefit the most from these best practices? Think,add customer names and supercharge yourself!"
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
// Show the popup
[alert show];
如果您有指定的消息,并且“OK”的按钮标题将被忽略,并且标题为“公告”。