4

我正在开发我们应用程序的 WatchOS 2 版本,并坚持我只能发送一个带有函数“updateApplicationContext:(NSDictionary *)”的字符串。

我希望我可以制作一个带有一些变量的 NSObject,以便在这个 NSDictionary 中作为对象发送。几天后,我仍然没有找到解决此问题的方法。无论如何要通过函数发送一个 NSObject 吗?

如果无法发送 NSObject 是否可以发送类似结构的东西?

我的代码如下:

-(void)updateWatchData
{
    //Objective-C
    if ([WCSession isSupported]) {
        WCSession *session = [WCSession defaultSession];
        session.delegate = self;
        [session activateSession];

        if(session.isPaired) {
            //Objective-C
            DLog("Sending watch data");
            NSMutableArray *kalenderData = [[NSMutableArray alloc] init];

            for (int i = 0; i < self.dataContainerViews.count; i++) {
                DataContainerView *container = self.dataContainerViews[i];

                if(container.listType == ListGPKalender){
                    for(int j = 0; j < container.tableArray.count; j++){
                        GrandPrix *gp = container.tableArray[j];
                        WatchGrandPrix *watchGp = [[WatchGrandPrix alloc] init];

                        watchGp.gpnaam = gp.gpnaam;

                        [kalenderData addObject:watchGp];
                    }
                }
            }

            NSArray *keys = [NSArray arrayWithObjects:@"kalenderData", nil];
            NSArray *objects = [NSArray arrayWithObjects:kalenderData, nil];
            NSDictionary *dictionary = [NSDictionary dictionaryWithObjects:objects forKeys:keys];

            NSError *anyError;
            if([[WCSession defaultSession] updateApplicationContext:dictionary error:&anyError]){
                DLog("Data Send!");
            }else{
                DLog("Failed to send data with error: %@", anyError);
            }
        }
    }
}

NSObject 只是:

@interface WatchGrandPrix : NSObject

@property(nonatomic,strong) NSString *gpnaam;

@end

我得到的错误是

发送数据失败,错误:错误域=WCErrorDomain 代码=7010“有效负载包含不支持的类型。” UserInfo={NSLocalizedDescription=Payload 包含不支持的类型。, NSLocalizedRecoverySuggestion=只传递有效类型。}

谢谢!

4

2 回答 2

3

我一直在通过将自定义对象序列化为 Json 字符串来发送它们。为此,我创建了一个快速序列化任何对象的github 项目。它包括一个展示如何进行序列化/反序列化的游乐场。

于 2016-01-01T13:46:22.143 回答
2

您可以将对象转换为属性列表表示形式(基本上,您有一个字典数组,而不是模型对象的数组,其中每个字典是值的映射,其中键是变量的名称,值是 plist表示值的兼容类型)。

另一种带宽效率较低的选择是使您的对象符合 NSSecureCoding 并使用类似 NSKeyedArchiver 的东西将其转换为 NSData 并发送一组 NSData。

于 2015-12-31T17:22:17.927 回答