cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame];
cell.selectedBackgroundView.backgroundColor = [UIColor colorWithRed:0.855f green:0.914f blue:0.957f alpha:1.00f]; [cell.bt_start addTarget:self action:@selector(StartTimeAction:) forControlEvents:UIControlEventTouchUpInside];
[cell.bt_end addTarget:self action:@selector(EndTimeAction:) forControlEvents:UIControlEventTouchUpInside];
相关文章
- iOS UITextView 输入内容实时更新cell的高度
- 【iOS】TableView的footerView不随cell滚动而停留在tableView底部的问题
- iOS—怎样让UITableView的表头随着tableView一起滚动?这样解决
- 【iOS】KVO方式监听数组的变化动态刷新tableView
- iOS中UITableView数据源刷新了,但tableview当中的cell没有刷新
- Ios 该图显示其出现的相关问题定义UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:'
- [ios2]tableView去除空行的singleLine
- iOS:针对固定数据源,更好的封装cell
- iOS、Xcode监测键盘的显示和隐藏变化,并获得键盘高度,改变tableView的frame和偏移
- IOS8 不用计算Cell高度的TableView实现方案