4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
28 lines
799 B
Objective-C
28 lines
799 B
Objective-C
//
|
|
// MasterViewController.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 17/10/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface MasterViewController : UIViewController <UICollectionViewDelegate, UICollectionViewDataSource>
|
|
|
|
@property (nonatomic, strong) IBOutlet UICollectionView *collectionView;
|
|
@property (nonatomic, strong) NSArray *listaAzioniCollectView;
|
|
@property (nonatomic, strong) IBOutlet UIBarButtonItem *sidebarButton;
|
|
|
|
-(void)apriImpostazioni;
|
|
-(void)sincronizza;
|
|
-(void)apriManu;
|
|
-(void)clock;
|
|
-(void)heart;
|
|
|
|
-(void)selezionaItem:(NSIndexPath *)indexPath;
|
|
-(void)caricaChildrenViewController:(NSIndexPath *)indexPath;
|
|
-(void)fetchNewDataWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler;
|
|
|
|
@end
|