在我的应用程序中,我想更改默认警报视图并从该警报视图中隐藏Cacel按钮。 在iphone中有可能吗?
答案 0 :(得分:1)
您无法隐藏取消按钮,但可以将其文字更改为您想要的内容:
UIAlertView *myCustomAlert = [[UIAlertView alloc] initWithTitle:@"Title"
message:@"Message"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
该代码将使用单个“确定”按钮创建警报。