5

UIAlertView除了其构造函数之外, 有没有办法将标题设置为取消按钮initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:。如果我已经初始化了UIAlertView之前和之后的时间,我想更改取消按钮的标题。

4

1 回答 1

11

我不知道稍后更改取消按钮文本(我没有看到任何删除/编辑按钮方法),但如果您没有预先指定取消按钮,您可以稍后添加它,无论你想要的标签,例如

[action setCancelButtonIndex:[action addButtonWithTitle:@"Cancel"]];
于 2012-04-16T03:32:41.017 回答