程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-得到異常:NSInvalidArgumentException

ios-得到異常:NSInvalidArgumentException

編輯:編程綜合問答
得到異常:NSInvalidArgumentException

得到異常: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的.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved