我有一个 UIAlertView,默认情况下在 UIAlertView 中垂直显示 3 个按钮。我希望顶部按钮加粗/突出显示。根据我的理解和测试,“取消”按钮是突出显示的。问题是无论我如何设置取消按钮,它都放在这一行的最后。我不能让它成为第一个按钮。
我试过明确设置取消按钮
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:self
cancelButtonTitle:@"Top Button"
otherButtonTitles:@"Middle Button", @"Bottom Button", nil];
以及设置取消按钮的索引
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"Top Button", @"Middle Button", @"Bottom Button", nil];
alert.cancelButtonIndex = 0;