25 lines
578 B
Objective-C
25 lines
578 B
Objective-C
//
|
||
// 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
|