mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-25 20:50:47 +00:00
37 lines
894 B
Objective-C
37 lines
894 B
Objective-C
//
|
|
// CNSHockeyBaseManager+Private.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Andreas Linde on 04.06.12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class BITHockeyBaseManager;
|
|
@class BITHockeyBaseViewController;
|
|
|
|
@interface BITHockeyBaseManager()
|
|
|
|
@property (nonatomic, strong) NSString *appIdentifier;
|
|
|
|
- (id)initWithAppIdentifier:(NSString *)appIdentifier isAppStoreEnvironemt:(BOOL)isAppStoreEnvironment;
|
|
|
|
- (void)startManager;
|
|
|
|
- (void)reportError:(NSError *)error;
|
|
- (NSString *)encodedAppIdentifier;
|
|
- (BOOL)isAppStoreEnvironment;
|
|
|
|
- (NSString *)getDevicePlatform;
|
|
- (NSString *)executableUUID;
|
|
|
|
- (UIWindow *)findVisibleWindow;
|
|
- (void)showView:(UIViewController *)viewController;
|
|
|
|
- (NSData *)appendPostValue:(NSString *)value forKey:(NSString *)key;
|
|
|
|
- (NSDate *)parseRFC3339Date:(NSString *)dateString;
|
|
|
|
@end |