27 lines
608 B
Objective-C
27 lines
608 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>
|
|
|
|
@class EQNMainTabBarController;
|
|
@class ReteSmartphone;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (weak, nonatomic) EQNMainTabBarController *mainTabBarController;
|
|
@property (weak, nonatomic) ReteSmartphone *reteSmartphone;
|
|
@property (readonly, strong) NSPersistentContainer *persistentContainer;
|
|
|
|
- (void)saveContext;
|
|
|
|
|
|
@end
|
|
|