码迷,mamicode.com
首页 > 其他好文 > 详细

获得现在所有的是周几

时间:2015-03-11 16:52:17      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

代码:

- (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

 

 

获得现在所有的是周几

标签:

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4330145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!