1
我試圖在我的項目使用這個庫https://github.com/updatezen/Parse-NSCoding/,但是當我導入的.h/.m文件到我的項目仍然拋出一個警告,當我嘗試做緩存我PFObjects [cache setObject:myPFObject forKey:@"PFObjectID"];
說NSCoding用於解析PFObjects
"Sending 'PFObject *const_strong' to parameter of incompatible type 'id <\NSCoding>'"
有其他人試圖使用這個庫與任何成功
你所得到的錯誤只是一個編譯器警告。您的PFObject將在運行時實現NSCoding。這裏有一個快速證明: 'PFObject * parseObject = [[PFObject alloc] initWithClassName:@「Test」]; assert([parseObject respondsToSelector:@selector(initWithCoder :)]); ' – martin
你會介意看看我的這個新問題:http://stackoverflow.com/questions/23119739/saving-pfobject-nscoding,非常感謝! – Apollo