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 を作成するにはどうすればよいですか? 私が抱えている問題は[アラートリリース]です。part since release は、自動参照カウントでは使用できません。
You don't use alert release at all - it's not necessary with ARC. [alert show]; may be what you're looking for:
UIAlertView *alert = [[UIAlertView alloc] init…]; [alert show];
That's it.