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.
我想在 IOS7 的 UIAlertView 中添加 UILabel。我的代码在 iOS7 更少的版本中运行良好。
从 iOS 7 开始,AddSubview 是不可能的。
如何在 iOS 7 的 UIAlertView 中添加子视图?
在 iOS 7 中,您可以使用
[alertView setValue:customContentView forKey:@"accessoryView"];
完整的解释在这里