20 lines
380 B
Objective-C
20 lines
380 B
Objective-C
//
|
|
// KBFullAccessGuideView.h
|
|
// CustomKeyboard
|
|
//
|
|
// A lightweight overlay prompting user to enable "Allow Full Access".
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface KBFullAccessGuideView : UIView
|
|
|
|
/// Present the guide overlay inside a given parent view (or its window).
|
|
+ (void)showInView:(UIView *)parent;
|
|
|
|
/// Dismiss if shown.
|
|
+ (void)dismissFromView:(UIView *)parent;
|
|
|
|
@end
|
|
|