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

关于设置日期的代码

时间:2015-12-07 16:11:14      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

在开发过程中,设置日期是必不可少的:

//获取用户选择的时间
    NSDate *date = self.dataPicker.date;
    //把NSdat转换成一个字符串
    NSDateFormatter *formatter = [[NSDateFormatter alloc]init];
    formatter.dateFormat = @"HH:mm";
    NSString *strDate = [formatter//把用户选择的日期设置给当前选中的cell中的label
    //获取用户当前选中的cell
    //根据当前选中行获取当前选中行的索引
    NSIndexPath *index = [self.tableView indexPathForSelectedRow];
    //根据当前选中索引获取当前选中的cell
    UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:index];
    
    //把日期设置给cell中的label
    cell.detailTextLabel.text = strDate;

 

关于设置日期的代码

标签:

原文地址:http://www.cnblogs.com/ZMiOS/p/5026058.html

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