puer

Results 3 comments of puer

这个问题我感觉是QQ本身在限制。因为在我们的app上,分享音乐的链接到QQ Zone,如果链接来自虾米,就会出现"分享失败 系统繁忙,请稍后重试"的报错,但如果链接来自我们自己的服务器就可以分享成功

In order to conform to NSSecureCoding: An object that does not override `initWithCoder:` can conform to **NSSecureCoding** without any changes (assuming that it is a subclass of another class that...

@louiesanyu 根据我的理解,“cost” 是一个类似存储大小的概念,但不唯一。Apple 的 [NSCache](https://developer.apple.com/reference/foundation/nscache/1416399-setobject?language=objc) 中对 `NSCache` 的 `- (void)setObject:(ObjectType)obj forKey:(KeyType)key cost:(NSUInteger)g;` 的 `cost` 的描述是 _“Typically, the obvious cost is the size of the value in bytes”_。所以 **cost** 表示一个缓存所消耗大小的概念,比如图片我们可以用分辨率来表示(因为可以粗略的任务分辨率越高,图片数据越大),也可以用转化成二进制流后的大小来表示。 所以此处...