Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UIAlertviewカスタム ボタンを使用せずに画像をボタンに設定するにはどうすればよいですか?
UIAlertview
誰でも私を助けることができますか?
これを使ってみてください。私はそれがあなたを助けると思う..カスタムボタンを使用せずに、このように使用することができます.
for (UIView *view in [alert subviews]) { if ([view isKindOfClass:[UIButton class]]) { [view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"imageName"]]]; } }