Files
peko-ios/YuMi/Appdelegate/AppDelegate.h

21 lines
559 B
C
Raw Normal View History

2023-07-06 16:54:13 +08:00
//
// AppDelegate.h
// YUMI
//
// Created by admin on 2023/3/9.
//
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property(nonatomic,strong,readonly)NSManagedObjectContext *managedObjectContext;
@property(nonatomic,strong,readonly)NSManagedObjectModel *managedObjectModel;
@property(nonatomic,strong,readonly)NSPersistentStoreCoordinator *persistentStoreCoordinator;
2023-07-14 18:50:55 +08:00
- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;
2023-07-06 16:54:13 +08:00
@end