NSDate
十年的武川網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷(xiāo)的優(yōu)勢(shì)是能夠根據(jù)用戶(hù)設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整武川建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“武川網(wǎng)站設(shè)計(jì)”,“武川網(wǎng)站推廣”以來(lái),每個(gè)客戶(hù)項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。1.NSDate對(duì)象用來(lái)表示一個(gè)具體的時(shí)間點(diǎn)。
2.NSDate是一個(gè)類(lèi)簇,我們使用的NSDate對(duì)象都是它的私有子類(lèi)的實(shí)體。
3.NSDate存儲(chǔ)的是GMT時(shí)間,使用的時(shí)候會(huì)根據(jù) 當(dāng)前應(yīng)用 指定的 時(shí)區(qū) 進(jìn)行時(shí)間上的增減,以供計(jì)算或顯示。
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; NSDate *now; NSDateComponents *comps = [[NSDateComponents alloc] init]; NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit; now=[NSDate date]; comps = [calendar components:unitFlags fromDate:now]; NSInteger year = [comps year]; NSInteger month = [comps month]; NSInteger day = [comps day]; NSInteger hour = [comps hour]; NSInteger min = [comps minute]; NSInteger sec = [comps second]; NSLog(@"year:%ld \n \ month:%ld \n \ day:%ld \n \ hour:%ld \n \ min:%ld \n \ sec:%ld", year, month, day, hour, min, sec); //組裝 NSString *stringDate = [NSString stringWithFormat:@"%ld%ld%ld%ld%ld%ld", year, month, day, hour, min, sec ]; NSLog(@"stringDate:%@", stringDate);
獲取若干天前的日期:
NSTimeInterval secondsPerDay = 24 * 60 * 60;
for (int i = 0; i < 400; i++) {
NSDate *date = [[NSDate alloc] initWithTimeIntervalSinceNow:-i*secondsPerDay];
NSLog(@"%@", date);
}
附件:http://down.51cto.com/data/2363334另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。