簡單記錄一下ios裡面獲取系統時間的方法。
nsstring* date;
nsdateformatter* formatter = [[nsdateformatter alloc]init];
[formatter setdateformat:@"yyyy:mm:dd:hh:mm:ss"];
date = [formatter stringfromdate:[nsdate date]];
nslog(@"yyyy:mm:dd:hh:mm:ss == %@", date);
//想實現查詢幾天前的時間,可以用這個方法
nsdate* dateago = [[nsdate alloc] init];
dateago = [date datebyaddingtimeinterval:-5*3600*24];
這是用現在的時間,往前面減5天,得到的時間。非常好用。
mysql時間比較
時間比較 當前時間是否在某個時間段之內 是否在create time 5天之內 select from message detail where unix timestamp now between unix timestamp create time and unix timestamp crea...
NSDate 時間比較
由 nsdate 轉換為 nsstring nsdateformatter dateformatter nsdateformatter alloc init dateformatter setdateformat yyyy mm dd hh mm ss nsstring strdate datefo...
NSDate 時間比較
由 nsdate 轉換為 nsstring nsdateformatter dateformatter nsdateformatter alloc init dateformatter setdateformat yyyy mm dd hh mm ss nsstring strdate datefo...