22 lines
445 B
Objective-C
22 lines
445 B
Objective-C
//
|
|
// EQNTabControllerDelegate.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Busi Andrea on 14/08/2020.
|
|
// Copyright © 2020 Earthquake Network. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// This delegate allows multiple controller to be refreshable.
|
|
/// Used to refresh a controller UI when tab is changed.
|
|
@protocol EQNTabControllerDelegate <NSObject>
|
|
|
|
- (void)refreshUI;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|