更新时间:2023-07-13 07:14:37下载pdf
常见问题与反馈 UI 业务包提供承载 用户问题与反馈 的 iOS 容器,为您的 App 提供问题排查与反馈渠道。
在工程的 Podfile
文件中添加常见问题与反馈业务包组件,并执行 pod update
命令:
source "https://github.com/tuya/tuya-private-specs"
source 'https://cdn.cocoapods.org/'
platform :ios, '11.0'
target 'your_target_name' do
# 添加常见问题与反馈业务包
pod 'ThingSmartHelpCenterBizBundle'
end
常见问题与反馈业务包实现 ThingHelpCenterProtocol
协议以提供服务,在 ThingModuleServices
组件中查看 ThingHelpCenterProtocol.h
协议文件内容为:
@protocol ThingHelpCenterProtocol <NSObject>
@optional
/**
* 跳转到常见问题与反馈页面
**/
- (void)gotoHelpCenter;
@end
无。
Objective-C 示例
#import <ThingSmartBizCore/ThingSmartBizCore.h>
#import <ThingModuleServices/ThingHelpCenterProtocol.h>
id<ThingHelpCenterProtocol> impl = [[ThingSmartBizCore sharedInstance] serviceOfProtocol:@protocol(ThingHelpCenterProtocol)];
[impl gotoHelpCenter];
Swift 示例
let impl = ThingSmartBizCore.sharedInstance().service(of: ThingHelpCenterProtocol.self) as? ThingHelpCenterProtocol
impl?.gotoHelpCenter()
该内容对您有帮助吗?
是意见反馈该内容对您有帮助吗?
是意见反馈