0

アプリで自動参照カウントを使用せずに UIAlertView を作成するにはどうすればよいですか? 私が抱えている問題は[アラートリリース]です。part since release は、自動参照カウントでは使用できません。

4

1 に答える 1

0

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.

于 2013-10-30T02:52:52.447 に答える