4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
25 lines
612 B
Objective-C
25 lines
612 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 12/09/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "MasterViewController.h"
|
|
#import "ReteSmartphone.h"
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) MasterViewController *masterViewController;
|
|
@property (strong, nonatomic) ReteSmartphone *reteSmartphone;
|
|
@property (readonly, strong) NSPersistentContainer *persistentContainer;
|
|
|
|
- (void)saveContext;
|
|
|
|
|
|
@end
|
|
|