码迷,mamicode.com
首页 >  
搜索关键字:sizeforitemat indexpath    ( 243个结果
两种局部刷新UITableView的方法的使用条件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ //1.取消选中这一行 [tableView deselectRowAtIndexPath:indexPath.....
分类:其他好文   时间:2014-07-22 22:59:54    阅读次数:216
实现滑动出现删除按钮的代码
// Override to support conditional editing of the table view.- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath...
分类:其他好文   时间:2014-07-01 13:18:10    阅读次数:526
改变cell的背景颜色
#defineDARK_BACKGROUND[UIColorcolorWithRed:151.0/255.0green:152.0/255.0blue:155.0/255.0alpha:1.0];-(void)tableView:(UITableView*)tableViewwillDisplayCell:(UITableViewCell*)cellforRowAtIndexPath:(NSIndexPath*)indexPath{cell.backgroundColor=DARK_BACKGROUND;}
分类:其他好文   时间:2014-06-25 10:48:56    阅读次数:264
iOS7中Cell高度 Label高度自适应
- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ NSString *str = [_dataArray objectAtIndex:indexPath.row]...
分类:移动开发   时间:2014-06-13 07:20:35    阅读次数:292
【转】UITableViewCell自适应高度 UILabel自适应高度和自动换行
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {// 列寬CGFloat contentWidth = self.tableView.frame.size....
分类:其他好文   时间:2014-06-12 23:17:40    阅读次数:358
UITableView删除分组最后一个元素
UITableView删除分组最后一个元素,需要把分组同时删除。1.首先在数据源上删除数据。2.UI上删除cell:[tableView deleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITa.....
分类:其他好文   时间:2014-06-03 12:23:40    阅读次数:206
UITableView细节
1.取消选中这行[tableView deselectRowAtIndexPath:indexPath animated:YES];2.去掉tableView的分割线(ios7)self.tableView.separatorStyle = UITableViewCellSeparatorStyle...
分类:其他好文   时间:2014-05-26 12:47:25    阅读次数:253
UITableView 多选
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{ returnUITableViewCellEditin.....
分类:其他好文   时间:2014-05-14 09:04:33    阅读次数:203
取消记录tableView选中效果
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {      [self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES]; }...
分类:其他好文   时间:2014-05-08 17:23:54    阅读次数:261
UITableView 左划删除
-(BOOL)tableView:(UITableView*)tableViewcanEditRowAtIndexPath:(NSIndexPath*)indexPath{returnYES;}-(void)tableView:(UITableView*)tableViewcommitEditingStyle:(UITableViewCellEditingStyle)editingStyleforRowAtIndexPath:(NSIndexPath*)indexPath{if(editingStyle==U..
分类:其他好文   时间:2014-05-08 16:33:27    阅读次数:205
243条   上一页 1 ... 22 23 24 25 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!