获得现在所有的是周几_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 获得现在所有的是周几

获得现在所有的是周几

 2015/3/11 17:17:26  恋雪  程序员俱乐部  我要评论(0)
  • 摘要:代码:-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.NSLog(@"现在所在的周:%@",[selfgetWeekFromLocal]);}//活的现在的周的日期,格式:Wednesday-(NSString*)getWeekFromLocal{NSDate*senddate=[NSDatedate]
  • 标签:

代码:

class="brush:objc;gutter:true;">- (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

 

 

  • 相关文章
发表评论
用户名: 匿名