如何更改默认的pushnotification alertview?

时间:2011-10-18 15:11:33

标签: iphone

在我的应用程序中,我想更改默认警报视图并从该警报视图中隐藏Cacel按钮。 在iphone中有可能吗?

1 个答案:

答案 0 :(得分:1)

您无法隐藏取消按钮,但可以将其文字更改为您想要的内容:

UIAlertView *myCustomAlert = [[UIAlertView alloc] initWithTitle:@"Title"
                                                        message:@"Message"
                                                        delegate:self
                                               cancelButtonTitle:@"OK"
                                               otherButtonTitles:nil];

该代码将使用单个“确定”按钮创建警报。