ARC Xcode 4.5 でアプリのコーディングを完了しましたが、「Received memory warning.」というメッセージが表示されます。そのため、私はそれをアップロードしていません。
計測器でテストすると、リークは表示されませんが、メモリ不足の警告が表示され、4〜5回の警告の後、アプリが終了します。
コメントのいくつかの点に疑問があります。
@interface TemplateViewController : UIViewController
{
NSMutableArray *arrNames; // is this not need to write?
}
@property (nonatomic, retain) NSMutableArray *arrNames; // is in ARC retain replace by strong ?
@end
それとも他に問題があるのでしょうか?