首页 > 代码库 > 日期时间的选择器ios源码
日期时间的选择器ios源码
这个源码案例是一个日期时间的选择器,源码DVDatePickerTableViewCell,DVDatePickerTableViewCell是使用Swift写的cell。可以在tebleView中提供一个日期时间的选择器,并持续显示在Cell上。 效果图:
使用方法: DVDatePickerTableViewCell想平常使用cell那样使用即可。 var cells:NSArray = [] cells = [[DVDatePickerTableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: nil)]] override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { return cells[indexPath.section][indexPath.row] as UITableViewCell } override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { var cell = self.tableView(tableView, cellForRowAtIndexPath: indexPath) if (cell.isKindOfClass(DVDatePickerTableViewCell)) { var datePickerTableViewCell = cell as DVDatePickerTableViewCell datePickerTableViewCell.selectedInTableView(tableView) } self.tableView.deselectRowAtIndexPath(indexPath, animated: true) } |
日期时间的选择器ios源码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。