如何在图像中显示信息消息

时间:2012-12-24 08:44:15

标签: ios5 ios4

如何显示消息“哪些帐户将从这些最佳做法中受益最多?想想,添加客户名称并自行增压!”如弹出式显示一样?

1 个答案:

答案 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”的按钮标题将被忽略,并且标题为“公告”。