12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
-
-
- #import <UIKit/UIKit.h>
-
- @class FIRAuthWebViewController;
-
- NS_ASSUME_NONNULL_BEGIN
-
-
- @protocol FIRAuthWebViewControllerDelegate <NSObject>
-
-
- - (BOOL)webViewController:(FIRAuthWebViewController *)webViewController canHandleURL:(NSURL *)URL;
-
-
- - (void)webViewControllerDidCancel:(FIRAuthWebViewController *)webViewController;
-
-
- - (void)webViewController:(FIRAuthWebViewController *)webViewController
- didFailWithError:(NSError *)error;
-
- @end
-
-
- @interface FIRAuthWebViewController : UIViewController
-
-
- - (instancetype)initWithNibName:(nullable NSString *)nibNameOrNil
- bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
-
-
- - (instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
-
- - (instancetype)initWithURL:(NSURL *)URL
- delegate:(__weak id<FIRAuthWebViewControllerDelegate>)delegate
- NS_DESIGNATED_INITIALIZER;
-
- @end
-
- NS_ASSUME_NONNULL_END
|