Search found 3 matches

by zerozheng
2025年 Feb 21日 17:03
Forum: App开发
Topic: 如何解决ios使用UISceneDelegate后语言技能UI业务包google授权跳回app进不去授权确认页面
Replies: 0
Views: 3049

如何解决ios使用UISceneDelegate后语言技能UI业务包google授权跳回app进不去授权确认页面

使用UISceneDelegate后,系统将不在走UIApplicationDelegate的 application(_:continue:restorationHandler:) 方法,而是走了UISceneDelegate的 scene(_:continue:) 。 因此在UISceneDelegate 中添加如下代码即可解决: func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { if let impl = ThingSmartBizCore.sharedInstance().service(ofPr...
by zerozheng
2024年 Jun 24日 20:56
Forum: App开发
Topic: ios 如何更合理的注入 protocol
Replies: 1
Views: 1864

ios 如何更合理的注入 protocol

ThingSmartBizCore 目前提供了以下两个方法来注册服务: /** * Register a instance for service which can not be served by BizBundle itself * Each service can only register one instance or class at a time, whichever is the last * * @param service service protocol * @param instance instance which conform to the service pr...
by zerozheng
2024年 Apr 1日 19:11
Forum: App开发
Topic: 【开发资料】设备离线提醒功能开发
Replies: 0
Views: 4088

【开发资料】设备离线提醒功能开发

用途 当设备离线超过30分钟时(低功耗设备8个小时), 手机推送中心 和 app消息中心 都将收到离线提醒的消息。 接入 要求 :需要接入UI业务包5.8.0及以上版本 source 'https://github.com/tuya/tuya-pod-specs.git' platform :ios, '11.0' target 'Your_Project_Name' do pod "ThingSmartBusinessExtensionKit" end API 说明 判断设备是否支持离线提醒功能 |入参|类型|说明| |----|-----|-------| |devi...