19 lines
366 B
Objective-C
19 lines
366 B
Objective-C
//
|
|
// ViewController.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 12/09/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "EQNBaseViewController.h"
|
|
|
|
|
|
@interface ReteSmartphone : EQNBaseViewController
|
|
|
|
- (void)fetchNewDataWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler;
|
|
|
|
@end
|
|
|