得到異常:NSInvalidArgumentException,這是在我json編碼NSDate對象時出現的,我覺得是NSDate不兼容JSON編碼,但是必須編碼這個日期,不知道怎麼辦?
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (__NSDate)'
JSON只支持一些特定的object, 基本上就是字符串跟數字.
NSDate當然不行,但是你可以用一串字符表示一個Date啊, 或者用數字表示Date.
NSDate *theDate = [NSDate date];
NSString *dateString = [NSString stringWithFormat:@"%f", [theDate timeIntervalSince1970]];
NSNumber *dateNumber = [NSNumber numberWithDouble:[theDate timeIntervalSince1970]];
這樣,NSString and NSNumber 都是合法的可以轉換成JSON data的.