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?我遇到的问题是[警报发布];部分因为 release 不能用于自动引用计数。
您根本不使用警报发布 - ARC 没有必要。[警报显示];可能是您正在寻找的:
UIAlertView *alert = [[UIAlertView alloc] init…]; [alert show];
而已。