1、在AppDelegate類中定義一個(gè)接收傳值的屬性,例如:需要接收的屬性為NSMutableArray類型。
@property (nonatomic, strong) NSMutableArray *saveData;
2、在其他類中定義一個(gè)AppDelegate的屬性:
@property (nonatomic, strong) AppDelegate *appDelegate;
3、然后在類中初始化:
_appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
4、將類中需要保存的數(shù)據(jù)賦值給_appDelegate,例如需要保存一個(gè)類型為NSMutableArray的data對象
_appDelegate.saveData = data;
這樣就可以在AppDelegate中實(shí)現(xiàn)退出保存功能了。
更多信息請查看IT技術(shù)專欄