Files
eqn.ios/Sources/Earthquake Network/Controllers/EQNBaseViewController.h
T

28 lines
662 B
Objective-C

//
// EQNBaseViewController.h
// Earthquake Network
//
// Created by Busi Andrea on 16/08/2020.
// Copyright © 2020 Earthquake Network. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface EQNBaseViewController : UIViewController
- (void)refreshUI;
/// Handle `IAPHelperPurchaseNotification` notification
/// @param notification Notification fired
- (void)didReceiveInAppNotification:(NSNotification *)notification;
/// Handle `NOTIFICA_DOWNLOAD_TERMINATO` notification
/// @param notification Notification fired
- (void)didReceiveDownloadCompleteNotification:(NSNotification *)notification;
@end
NS_ASSUME_NONNULL_END