29 lines
587 B
Objective-C
29 lines
587 B
Objective-C
//
|
|
// EQNMainTabBarController.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Busi Andrea on 13/08/2020.
|
|
// Copyright © 2020 Earthquake Network. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// Sections inside the app
|
|
typedef NS_ENUM(NSInteger, EQNTabBarSection) {
|
|
EQNTabBarSectionAllerte = 0,
|
|
EQNTabBarSectionSegnalazioni,
|
|
EQNTabBarSectionRetiSismiche,
|
|
EQNTabBarSectionImpostazioni
|
|
};
|
|
|
|
@interface EQNMainTabBarController : UITabBarController
|
|
|
|
- (void)sincronizza;
|
|
- (void)selectSection:(EQNTabBarSection)section;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|