0

默认情况下,UIAlertView带有两个按钮的 a 每个按钮都有不同的 alpha。

有没有办法让它们看起来与不同的文本相同,无需子类化UIAlertView或制作自定义警报视图?

这是我使用的:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:  
                     kAlertTitleOrderType message:kAlertMessageOrderType delegate:delegate
                     cancelButtonTitle:nil otherButtonTitles:@"Collection", @"Delivery", nil];

在此处输入图像描述

4

1 回答 1

0

如果您在调用时将cancel按钮设置为,则不会添加取消按钮(这是一个看起来不同的按钮)。然后,您可以根据需要添加其他按钮。nilinitWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:

于 2013-07-25T10:43:58.493 回答