// // KBPermissionViewController.h // CustomKeyboard // // Created by Mac on 2025/10/27. // #import NS_ASSUME_NONNULL_BEGIN @interface KBPermissionViewController : UIViewController /// 点击页面左上角“返回”时回调。用于让调用方(如 KBGuideVC)一起退出等自定义行为。 /// 注意:避免与按钮 action `onBack` 重名,故命名为 backHandler。 @property (nonatomic, copy, nullable) void (^backHandler)(void); @property (nonatomic, strong) UIButton *backButton; // 左上角返回 /// 外部(如 KBGuideVC)根据引导页是否显示,控制视频播放/暂停 - (void)kb_resumeGuideVideoIfNeeded; - (void)kb_pauseGuideVideo; @end NS_ASSUME_NONNULL_END