chenqiyang
2024-07-17 be56723cce4cd60ddc144ebe6ac20607675b3006
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  AppDelegate.h
//  HDLLinPhoneDemo
//
//  Created by 陈启扬 on 2021/8/3.
//  Copyright © 2021 陈启扬. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
 
#import "HDLLinPhoneSDK.h"
 
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (readonly, strong) NSPersistentContainer *persistentContainer;
 
- (void)saveContext;
 
 
@end