Files
keyboard/Shared/KBHostAppLauncher.h

25 lines
578 B
C
Raw Normal View History

//
// KBHostAppLauncher.h
// keyBoard
//
// Created by Mac on 2025/11/24.
// 从扩展拉起主app
#import <Foundation/Foundation.h>
#import <TargetConditionals.h>
#if __has_include(<UIKit/UIKit.h>)
#import <UIKit/UIKit.h>
#else
@class UIResponder;
#endif
NS_ASSUME_NONNULL_BEGIN
@interface KBHostAppLauncher : NSObject
/// 在主 App 内打开 URL。注意在 App Extension 环境下会直接返回 NO扩展内请使用 `extensionContext openURL:`)。
+ (BOOL)openHostAppURL:(NSURL *)url fromResponder:(UIResponder *)startResponder;
@end
NS_ASSUME_NONNULL_END