首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >用IOS数据更新WatchOS2 ClockKit复杂性

用IOS数据更新WatchOS2 ClockKit复杂性
EN

Stack Overflow用户
提问于 2015-10-11 09:35:55
回答 2查看 1.8K关注 0票数 4

我试图更新一个watchOS2时钟工具包复杂的数据通过WatchConnectivity从IOS / iPhone传输。

尽管进行了大量的研究,但到目前为止还没有成功。不过,我发现其他帖子也在描述类似的挑战(目前还没有解决办法)。

我面临三个问题:

1)来自sendMessage的ComplicationController似乎没有唤醒IOS父应用程序(而InterfaceController发送的相同的sendMessage确实唤醒了IOS父应用程序)

2)即使将值转移到ComplicationController (通过sendUserInfoToComplication和IOS应用程序在前台),在复杂的情况下显示的值有时也会被更新(没有找到为什么有时更新/有时不更新)。

3)我设置了“getNextRequestUpdate.”至2分钟(为测试目的)。不过,这似乎没有任何区别。(即使在模拟器中也会在任意时间触发,但是没有使用“预算”/我将塞子设置为验证)

请注意,我对IOS / Swift程序比较陌生。但我发现,根据其他问题/帖子,我似乎不是唯一一个在这方面苦苦挣扎的人。

在这里,示例代码:

ComplicationController

代码语言:javascript
复制
//
//  ComplicationController.swift
//  IOSDataToComplication WatchKit Extension
//
//  Created by Thomas Peter on 11.10.2015.
//  Copyright © 2015 Thomas Peter. All rights reserved.
//

import ClockKit
import WatchConnectivity


class ComplicationController: NSObject, CLKComplicationDataSource, WCSessionDelegate {

    var session:WCSession!
    var text:String = "watchdefault"
    var textOld:String = ""
    var header:String = "TestHeader"

    override init(){
        super.init()
        startSession()

    }

    // MARK: - Timeline Configuration

    func getSupportedTimeTravelDirectionsForComplication(complication: CLKComplication, withHandler handler: (CLKComplicationTimeTravelDirections) -> Void) {
        handler([.None])
    }

    func getTimelineStartDateForComplication(complication: CLKComplication, withHandler handler: (NSDate?) -> Void) {
        handler(nil)
    }

    func getTimelineEndDateForComplication(complication: CLKComplication, withHandler handler: (NSDate?) -> Void) {
        handler(nil)
    }

    func getPrivacyBehaviorForComplication(complication: CLKComplication, withHandler handler: (CLKComplicationPrivacyBehavior) -> Void) {
        handler(.ShowOnLockScreen)
    }

    // MARK: - Timeline Population

    func getCurrentTimelineEntryForComplication(complication: CLKComplication, withHandler handler: ((CLKComplicationTimelineEntry?) -> Void)) {
        // Call the handler with the current timeline entry

        if complication.family == .ModularLarge {

            //createData()

            let entry = self.createTimeLineEntry(text, date: NSDate())

            handler(entry)


        } else {


            handler(nil)
        }
    }


    func getTimelineEntriesForComplication(complication: CLKComplication, beforeDate date: NSDate, limit: Int, withHandler handler: (([CLKComplicationTimelineEntry]?) -> Void)) {
        // Call the handler with the timeline entries prior to the given date
        handler(nil)
    }

    func getTimelineEntriesForComplication(complication: CLKComplication, afterDate date: NSDate, limit: Int, withHandler handler: (([CLKComplicationTimelineEntry]?) -> Void)) {
        // Call the handler with the timeline entries after to the given date
        handler(nil)
    }

    // MARK: - Update Scheduling

    func getNextRequestedUpdateDateWithHandler(handler: (NSDate?) -> Void) {
        // Call the handler with the date when you would next like to be given the opportunity to update your complication content
        handler(NSDate(timeIntervalSinceNow: (60 * 2)))
    }

    // MARK: - Placeholder Templates

    func getPlaceholderTemplateForComplication(complication: CLKComplication, withHandler handler: (CLKComplicationTemplate?) -> Void) {
        // This method will be called once per supported complication, and the results will be cached
        let template = CLKComplicationTemplateModularLargeStandardBody()
        template.headerTextProvider = CLKSimpleTextProvider(text: "header")
        template.body1TextProvider = CLKSimpleTextProvider(text:"defaul text")


        handler(nil)
    }

    func requestedUpdateDidBegin() {
        print("Complication update is starting")


        createData()

        let server=CLKComplicationServer.sharedInstance()

        for comp in (server.activeComplications) {
            server.reloadTimelineForComplication(comp)
            print("Timeline has been reloaded!")

        }

    }



    func requestedUpdateBudgetExhausted() {
        print("Budget exhausted")
    }


    func createTimeLineEntry(bodyText: String, date:NSDate) -> CLKComplicationTimelineEntry {

        let template = CLKComplicationTemplateModularLargeStandardBody()
        template.headerTextProvider = CLKSimpleTextProvider(text: header)
        template.body1TextProvider = CLKSimpleTextProvider(text: text)

        let entry = CLKComplicationTimelineEntry(date: date, complicationTemplate: template)
        return(entry)
    }

    func createData(){


        let applicationData = ["wake":"fromComplication"]


        session.sendMessage(applicationData, replyHandler: {(replyMessage: [String : AnyObject]) -> Void in
            // handle reply from iPhone app here

            //let answer:[String:AnyObject] = replyMessage
            self.text = replyMessage["text"] as! String
            print("complication received messagereply \(self.text)")

            }, errorHandler: {(error ) -> Void in
                // catch any errors here
                print("no reply message")


        })

        print("complication sent \(applicationData) to iOS")

    }

    func session(session: WCSession, didReceiveUserInfo userInfo: [String : AnyObject]) {

        textOld = text
        text = userInfo["text"] as! String

        print("complication received userinfo \(text)")

        dispatch_async(dispatch_get_main_queue()) {

        //if text != textOld {
            self.requestedUpdateDidBegin()
        //}
        }
    }




    private func startSession(){

        if (WCSession.isSupported()) {
            session = WCSession.defaultSession()
            session.delegate = self;
            session.activateSession()
        }
    }

}

ViewController

代码语言:javascript
复制
//
//  ViewController.swift
//  IOSDataToComplication
//
//  Created by Thomas Peter on 11.10.2015.
//  Copyright © 2015 Thomas Peter. All rights reserved.
//

import UIKit
import WatchConnectivity


class ViewController: UIViewController, WCSessionDelegate {

    var session:WCSession!

    var time:String = "default"

    var text:String = "default"




    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        startSession()
        getData()
        sendUserInfoToComplication()
  }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


    func getData(){
        let timeValue = NSDate()
        let dateFormatter = NSDateFormatter()
        dateFormatter.dateFormat = "hh:mm"
        time = dateFormatter.stringFromDate(timeValue)

        text = "iPhone \(time)"
        print("constructed \(text)")

    }

    private func startSession(){

        if (WCSession.isSupported()) {
            session = WCSession.defaultSession()
            session.delegate = self;
            session.activateSession()
        }

        print("iPhone session started")

    }

    func session(session: WCSession, didReceiveMessage message: [String : AnyObject], replyHandler: ([String : AnyObject]) -> Void) {

        let receivedMessage = message["wake"] as! String

        print("iphone received message \(receivedMessage)")


        let applicationDict = ["text":text]

        replyHandler(applicationDict as [String : AnyObject])

        getData()

    }

    func sendUserInfoToComplication(){

        let applicationDict = ["text":text]

        session.transferCurrentComplicationUserInfo(applicationDict)
        print("iphone sent userinfo \(applicationDict) to complication")

    }


}

此外,在运行模拟器时,我会收到大量类似的消息,如下所示:

代码语言:javascript
复制
objc[7501]: Class SPAssetCacheAssets is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator.sdk/System/Library/Frameworks/WatchKit.framework/WatchKit and /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator.sdk/System/Library/PrivateFrameworks/SockPuppetGizmo.framework/SockPuppetGizmo. One of the two will be used. Which one is undefined.
objc[7501]: Class SPAssetCacheSyncData is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator.sdk/System/Library/Frameworks/WatchKit.framework/WatchKit and /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator.sdk/System/Library/PrivateFrameworks/SockPuppetGizmo.framework/SockPuppetGizmo. One of the two will be used. Which one is undefined.
EN

回答 2

Stack Overflow用户

发布于 2015-10-13 05:00:20

像这样使用CLKComplicationServer

代码语言:javascript
复制
CLKComplicationServer* server = [CLKComplicationServer sharedInstance];
[server.activeComplications enumerateObjectsUsingBlock:^(CLKComplication * _Nonnull each, NSUInteger idx, BOOL * _Nonnull stop) {
    [server reloadTimelineForComplication: each];
}];

它将调用您的ComplicationController

票数 0
EN

Stack Overflow用户

发布于 2015-11-25 14:07:17

当在模拟器中进行复杂调试时,每次从Xcode启动调试会话时,都需要退出监视模拟器。如果您不这样做,您将得到您所遇到的问题与7007错误和getNextRequestedUpdateDateWithHandler将不会被调用。

这将更新您的并发症:

代码语言:javascript
复制
let server = CLKComplicationServer.sharedInstance()
server.activeComplications.forEach { server.reloadTimelineForComplication($0) }
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/33063515

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档