22 lines
374 B
Objective-C
22 lines
374 B
Objective-C
//
|
|
// KBLoginSheetViewController.h
|
|
// keyBoard
|
|
//
|
|
// A lightweight bottom-sheet style login prompt.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KBLoginSheetViewController : UIViewController
|
|
|
|
@property (nonatomic, copy, nullable) void (^onLoginSuccess)(void);
|
|
|
|
+ (void)presentIfNeededFrom:(UIViewController *)presenting;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|