1

如何在UIAlertview不使用自定义按钮的情况下将图像设置为按钮?

谁能帮我?

4

2 回答 2

2

请尝试使用这个。我认为它可能会对您有所帮助..您可以在不使用自定义按钮的情况下这样做。

for (UIView *view in [alert subviews])
{
    if ([view isKindOfClass:[UIButton class]])
    {            
        [view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"imageName"]]];
    }
}
于 2013-05-03T09:51:18.970 回答
-1

看到这个 uialertview 按钮

UIAlertview

我认为这是最好的WCAlertView你可以改变颜色

于 2013-05-03T09:34:04.367 回答