我必须创建AppDelegate的sharedInstance并在我的应用程序中使用任何地方.
使用这样:
在AppDelegate.h中
+ (AppDelegate *)sharedAppDelegate;
在AppDelegate.m中
+ (AppDelegate *)sharedAppDelegate{ return (AppDelegate *)[UIApplication sharedApplication].delegate; }