你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS 獲取當前的時間的後天

iOS 獲取當前的時間的後天

編輯:IOS開發綜合
- (void)time{
NSDate *now=[NSDate date];
NSCalendar *cal=[NSCalendar currentCalendar];
unsigned int time=NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay|NSCalendarUnitHour|NSCalendarUnitMinute|NSCalendarUnitSecond;
NSDateComponents *t=[cal components:time fromDate:now];
int year=(int)[t year];
int mouth=(int)[t month];
int day=(int)[t day];
int hour=(int)[t hour];
int minute=(int)[t minute];
//int second=[t second];
day=day+2;
if (mouth==1||mouth==3||mouth==5||mouth==7||mouth==8||mouth==10||mouth==12) {
if (day>31) {
day=1;
mouth+=1;
}else{
NSLog(@"不做任何處理");
}
}else if (mouth==2){
if (day>28) {
day=1;
mouth+=1;
}else{
NSLog(@"不做任何處理");
}
}else{
if (day>30) {
day=1;
mouth+=1;
}else{
NSLog(@"不做任何處理");
}
}
self.label2.text=[NSString stringWithFormat:@"預計%2d-%2d-%2d %2d:%2d前到賬",year,mouth,day,hour,minute];
NSLog(@"text:%@",self.label2.text);
}

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved