mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
class to control authentication and validation of an installation. TODO: * AuthenticatorViewController * validation * hooking into BITHockeyManager
22 lines
521 B
Objective-C
22 lines
521 B
Objective-C
//
|
|
// BITAuthenticationViewController.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Stephan Diederich on 08.08.13.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@protocol BITAuthenticationViewControllerDelegate;
|
|
|
|
@interface BITAuthenticationViewController : UIViewController
|
|
|
|
@end
|
|
|
|
@protocol BITAuthenticationViewControllerDelegate<NSObject>
|
|
|
|
- (void) authenticationViewControllerDidCancel:(UIViewController*) viewController;
|
|
- (void) authenticationViewController:(UIViewController*) viewController authenticatedWithToken:(NSString*) token;
|
|
|
|
@end
|