// // EQNMainTabBarController.h // Earthquake Network // // Created by Busi Andrea on 13/08/2020. // Copyright © 2020 Earthquake Network. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN /// Sections inside the app typedef NS_ENUM(NSInteger, EQNTabBarSection) { EQNTabBarSectionAllerte = 0, EQNTabBarSectionSegnalazioni, EQNTabBarSectionRetiSismiche }; @interface EQNMainTabBarController : UITabBarController - (void)sincronizza; - (void)fetchNewDataWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler; - (void)selectSection:(EQNTabBarSection)section; @end NS_ASSUME_NONNULL_END