element-ios/matrixConsole/AppDelegate.h
giomfo 00f47680a9 Console: Add Build information in Settings (Configuration section).
The displayed information are GIT_BRANCH and BUILD_NUMBER.
2015-02-04 18:18:38 +01:00

45 lines
1.2 KiB
Objective-C

/*
Copyright 2014 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#import <UIKit/UIKit.h>
#import "MasterTabBarController.h"
#import "MXCAlert.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate> {
BOOL isAPNSRegistered;
}
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) MasterTabBarController *masterTabBarController;
@property (strong, nonatomic) MXCAlert *errorNotification;
@property (strong, nonatomic) NSString *appVersion;
@property (strong, nonatomic) NSString *build;
@property (nonatomic) BOOL isAppForeground;
+ (AppDelegate*)theDelegate;
- (void)registerUserNotificationSettings;
- (void)logout;
- (MXCAlert*)showErrorAsAlert:(NSError*)error;
@end