2
NSDate *LastBuildDate;
NSDate *PubDate;
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyyMMddhhmmss"];
LastBuildDate = [formatter dateFromString:buttoninfoamtion.mLastdate];
PubDate=[formatter dateFromString:newsItem.mPubDate];
if([PubDate compare:LastBuildDate])
buttoninfomation.mlastdate和newsItem.mPubDate是從OpenAPI的我想從字符串轉換爲Date
前) buttoninfomation.mlastdate字符串:星期二,2011年10月18日15時54分43秒0900
newspub :星期二,18十月2011 15時58分○○秒0900
但
LastBuidDate =(空)
pubdate的=(空)
我想比較兩個因素。
所以日期或字符串,但我認爲字符串是如此複雜。
代碼有什麼問題?
非常感謝。 KK –