我们可以使用归档的类对象的自定义构建文件归档,然后读取这个类以获取 iOS 中的更新,例如:
interface base {
-(void) methodbase1;
-(void) methodbase2;
}
base *objbase =[[base alloc]init];
archiving objbase -->to file
{
//if we provide this file from remote server can we update
}
reading objbase <--from file