【问题标题】:NSSecureCoding in Swift (Facebook SDK)Swift 中的 NSSecureCoding (Facebook SDK)
【发布时间】:2015-06-30 15:14:58
【问题描述】:

我正在尝试将一段 Objective-C 代码翻译成 Swift 代码。

目标-C:

#import "SUCacheItem.h"

#define SUCACHEITEM_TOKEN_KEY @"token"
#define SUCACHEITEM_PROFILE_KEY @"profile"

@implementation SUCacheItem

+ (BOOL)supportsSecureCoding
{
return YES;
}

- (id)initWithCoder:(NSCoder *)aDecoder
{
SUCacheItem *item = [[SUCacheItem alloc] init];
item.profile = [aDecoder decodeObjectOfClass:[FBSDKProfile class]   forKey:SUCACHEITEM_PROFILE_KEY];
item.token = [aDecoder decodeObjectOfClass:[FBSDKAccessToken class] forKey:SUCACHEITEM_TOKEN_KEY];
return item;
}

- (void)encodeWithCoder:(NSCoder *)aCoder
{
[aCoder encodeObject:self.profile forKey:SUCACHEITEM_PROFILE_KEY];
[aCoder encodeObject:self.token forKey:SUCACHEITEM_TOKEN_KEY];
}

@end

我把这段代码翻译成这样:

class CacheItem: NSObject, NSSecureCoding {

let CACHEITEM_TOKEN_KEY = "token"
let CACHEITEM_PROFILE_KEY = "profile"
var profile: AnyObject
var token: AnyObject

func supportsSecureCoding() -> Bool {
    return true
}

required init(coder aDecoder: NSCoder) {
    var item = CacheItem(coder: aDecoder)
    item.profile = aDecoder.decodeObjectOfClass(FBSDKProfile.self, forKey: CACHEITEM_PROFILE_KEY)!
    item.token = aDecoder.decodeObjectOfClass(FBSDKAccessToken.self, forKey: CACHEITEM_TOKEN_KEY)!
}


func encodeWithCoder(aCoder: NSCoder) {
    aCoder.encodeObject(self.profile, forKey: CACHEITEM_PROFILE_KEY)
    aCoder.encodeObject(self.token, forKey: CACHEITEM_TOKEN_KEY)
}   
}

这给了我一个错误:类型“CacheItem”不符合协议“NSSecureCoding”

我在这里错过了什么?

提前致谢!

【问题讨论】:

    标签: ios facebook swift nssecurecoding


    【解决方案1】:

    supportsSecureCoding 函数需要在类级别:

    class func supportsSecureCoding() -> Bool {
        return true
    }
    

    【讨论】:

    • static funcclass func有区别吗?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-03-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多