你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> 獲得現在所有的是周幾

獲得現在所有的是周幾

編輯:IOS技巧綜合
[摘要]本文是對獲得現在所有的是周幾的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

代碼:

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    NSLog(@"現在所在的周:%@",[self getWeekFromLocal]);
    
}

//活的現在的周的日期,格式:Wednesday
-(NSString*)getWeekFromLocal{
    NSDate *  senddate=[NSDate date];
    NSDateFormatter  *dateformatter=[[NSDateFormatter alloc] init];
    [dateformatter setDateFormat:@"EEEE"];
    NSString *  locationString=[dateformatter stringFromDate:senddate];
    NSLog(@"locationString:%@",locationString);
    return locationString;
}

輸出:

2015-03-11 15:50:31.628 獲得現在的周[5165:203827] locationString:Wednesday

2015-03-11 15:50:31.648 獲得現在的周[5165:203827] 現在所在的周:Wednesday

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