这是我的代码AppDelegate
iMapView = [[iMapViewController alloc] init];
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == 568)
{
iMapView.view.frame = CGRectMake(0, 0, 568, 320);
}
}
[viewController.view addSubview:iMapView.view]; // crashing here
我打开NSZombie,发现问题:
[iMapViewController searchDisplayController]: message sent to deallocated instance 0xd81d740
但我从来没有searchDisplayController
在任何地方使用过或其代表。
@interface iMapViewController : UIViewController<UIAlertViewDelegate>
它只发生在非 ARC 的 iOS 7 中。
你能给我一些建议吗?
谢谢