如何显示消息“哪些帐户将从这些最佳实践中受益最多?想想,添加客户名称并为自己增压!” 像弹出显示?
问问题
35 次
1 回答
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];
对于具有您指定的消息的消息,以及“确定”按钮标题以将其关闭,以及标题“公告”。
于 2012-12-24T08:46:58.023 回答