使用Xamarin开发iOS技巧 - 序列化本地数据

    在使用手机或者平板免不了没有网络的环境,这个时候你当然希望见到一个友善的提示,而你更希望可以缓存部分数据在本地。iOS有很好的缓存机制,那怎样移植到Xamarin for iOS,今天就和大家说说。

在Objective-C 中,通过NSCoding 去序列化你的数据。这里有两个方法 :


- (void) encodeWithCoder:(NSCoder *)encoder //序列化数据
- (id)initWithCoder:(NSCoder *)decoder //反序列化数据

      而在Xamarin中需要做以下调整 :


    public class VideoItemObject : NSObject
    {

        public string SessionID {get;set;}

        public VideoItemObject ()
        {
        }

        [Export("initWithCoder:")]
        public VideoItemObject(NSCoder coder)
        {
            NSString strSessionID = (NSString)coder.DecodeObject (@"sessionID");

            if (strSessionID != null)
                this.SessionID = strSessionID;
        }


        public override void EncodeTo (NSCoder coder)
        {
            //base.EncodeTo (coder);

            if (this.SessionID != null)
                coder.Encode (new NSString (this.SessionID), "sessionID");

        }
    }

通过NSKeyedUnarchiver.UnarchiveFileNSKeyedUnarchiver.UnarchiveFile去对你持久化的数据进行保存和读取了。


你可能感兴趣的:(Objective-C,手机,Xamarin)