摘要:
//解析新浪微博中的日期-(NSString*)resolveSinaWeiboDate:(NSString*)date{ NSDateFormatter *iosDateFormater=[[[NSDateFormatter alloc]init]autorelease]; iosDateFormater.dateFormat=@"EEE MMM d HH:mm:ss Z yyyy"; //必须设置,否则无法解析 iosDateFormater.locale=[[[NSLocale alloc]initWithLocaleIdentifier:@"en_US&q 阅读全文
摘要:
1 /** 2 * 格式化微博时间 3 * 4 * @param string 5 * @return 6 * @throws ParseException 7 */ 8 public static String formatWeiboTime(String dateString) { 9 // 微博创建时间:Fri Mar 01 10:36:44 +0800 2013 EEE MMM dd HH:mm:ss zzz yyyy /10 // EEE MMM d HH:mm:ss Z yyyy... 阅读全文