我在我的代码中使用 ARC,我收到了错误
Object 0x781b8e0 of class __NSCFString autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
它打破的线是
return UIApplicationMain(argc, argv, nil, NSStringFromClass([HomePageAppDelegate class]));
因为我使用的是 ARC,所以我不能NSAutoReleasePool
像往常一样使用它。我可以使用什么来修复此错误?