UITableView

2021-11-02  本文已影响0人  林希品

tableView 滚动到最顶端

//***************方法一***************////回滚到表的最顶端

[self.tableViewscrollRectToVisible:CGRectMake(0,0,1,1) animated:NO];

//***************方法二***************//

[self.tableViewsetContentOffset:CGPointMake(0,0) animated:NO];

//***************方法三***************//

NSIndexPath* indexPat = [NSIndexPathindexPathForRow:0inSection:0]; 

[self.tableViewscrollToRowAtIndexPath:indexPat atScrollPosition:UITableViewScrollPositionBottom animated:YES];

UITableView初始化设置展示哪一行

- (void)viewDidLoad {

    [super viewDidLoad];

    // 预估高度estimatedXXHeight需要置为0,不然会导致定位无准确

    _tableView.estimatedRowHeight = 0;

    _tableView.estimatedSectionFooterHeight = 0;

    _tableView.estimatedSectionHeaderHeight = 0;

    NSInteger index = 5;

    // [_tableView reloadData];

    NSIndexPath *curIndex = [NSIndexPath indexPathForRow:index inSection:0];

    [_tableView reloadRowsAtIndexPaths:@[curIndex] withRowAnimation:UITableViewRowAnimationTop];

    [_tableView layoutIfNeeded];

    // 方式一

    [_tableView setContentOffset:CGPointMake(0, SCREEN_HEIGHT*index)];

    // 方式二

    // [_tableView selectRowAtIndexPath:curIndex animated:NO scrollPosition:UITableViewScrollPositionTop];

    // 方式三

    // [_tableView scrollToRowAtIndexPath:curIndex atScrollPosition:UITableViewScrollPositionTop animated:NO];

}

UITableView是ScrollView的派生类,默认bounce是YES的。

只要将bounce值设置成NO就可以了

tableView.bounce = NO;//禁止tableView弹性效果 

去掉某一行的cell分割线

cell.separatorInset=UIEdgeInsetsMake(0, ViewWidth, 0, 0);// ViewWidth 

cell.separatorInset=UIEdgeInsetsMake(0,0,0, cell.bounds.size.width);[宏] 指的是手机屏幕的宽度

去掉整个tableView的所有cell分割线

self.tableView.separatorStyle= UITableViewCellSeparatorStyleNone;

1.UITableViewCellStyleDefault:

2.UITableViewCellStyleSubtitle:

3.UITableViewCellStyleValue1:

4.UITableViewCellStyleValue2:

typedefNS_ENUM(NSInteger, UITableViewCellStyle) {

    UITableViewCellStyleDefault,   // 左侧显示textLabel(不显示detailTextLabel),imageView可选(显示在最左边)

   UITableViewCellStyleValue1,       // 左侧显示textLabel、右侧显示detailTextLabel(默认蓝色),imageView可选(显示在最左边)

   UITableViewCellStyleValue2,       // 左侧依次显示textLabel(默认蓝色)和detailTextLabel,imageView可选(显示在最左边)

   UITableViewCellStyleSubtitle   // 左上方显示textLabel,左下方显示detailTextLabel(默认灰色),imageView可选(显示在最左边)

};

UITableView:

1、重用代理

@interfaceViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>

2、定义

    _tableView= [[UITableView alloc] initWithFrame:CGRectMake(0,0,320,460)     style:UITableViewStylePlain];

    _tableView.delegate= self;//代理

    _tableView.dataSource =self;

    [self.view addSubview:_tableView];

    [_tableView release];

//分割线颜色

    _tableView.separatorColor =[UIColor redColor];

   //分割线类型

   //_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

   //行高

    _tableView.rowHeight =100;

   //背景颜色

    _tableView.backgroundColor =[UIColor orangeColor];

   //_tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"2_4.jpg"]];

   //背景图片

    UIImageView* imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,460)];

    imageView.image= [UIImage imageNamed:@"2_4.jpg"];

    _tableView.backgroundView=imageView;

    [imageView release];

3、设置组的行数

想要确定哪一组,则要根据section的值来判断

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

   return_dataArray.count;

}

4、设置组数

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

   return2;

}

5、创建行代理

********************

判定组用:indexPath.section

判定行:indexPath.row

********************

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:indexPath.row%2==0?@"ID1":@"ID2"];

   if(cell ==nil) {

        cell= [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:indexPath.row%2==0?@"ID1":@"ID2"] autorelease];

       if(indexPath.row%2==0) {

            cell.contentView.backgroundColor=[UIColor redColor];

        }else{

            cell.contentView.backgroundColor=[UIColor blueColor];

        }

    }

   //cell选中效果

    cell.selectionStyle =UITableViewCellSelectionStyleNone;

    cell.textLabel.text=[_dataArray objectAtIndex:indexPath.row];

    NSLog(@"%d",indexPath.row);

    cell.textLabel.textColor=[UIColor whiteColor];

   returncell;

}

6、

//组标题 头部

- (NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

   return[NSString stringWithFormat:@"%d",section];

}

//组标题 尾部

- (NSString*)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{

   return@"end";

}

//行高

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

//    indexPath.section

//    indexPath.row

   if(indexPath.section ==0) {

       return50;

    }

   return80;

}

//每一组头部的高度

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

   return20;

}

6、设置选中状态 的闪现: [cell setSelected:NO animated:NO];

//选中时 调用的方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewCell*cell = (UITableViewCell *)[tableView viewWithTag:indexPath.section *10+ indexPath.row+1];

 //  NSLog(@"%@",cell.textLabel.text);

    cell.textLabel.textColor =[UIColor blueColor];

    cell.accessoryType=UITableViewCellAccessoryCheckmark;

    [cell setSelected:NO animated:NO];

}

//撤销选中时,调用的方法,可用于取消 accessoryType的状态,文字的颜色改变等

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewCell*cell = (UITableViewCell *)[tableView viewWithTag:indexPath.section *10+ indexPath.row+1];

    cell.textLabel.textColor=[UIColor blackColor];

    cell.accessoryType=UITableViewCellAccessoryNone;

}

7、//加组索引,只有超过一行的时候才能发挥作用

- (NSArray*)sectionIndexTitlesForTableView:(UITableView *)tableView{

   return[NSArray arrayWithObjects:@"A",@"B",@"C",@"D", nil];

}

8、 编辑

//编辑按钮的事件设置

- (void)edit{

    [_delArray removeAllObjects];

   if(_tableView.editing) {

        [_tableView setEditing:NO animated:YES];

    }else{

        [_tableView setEditing:YES animated:YES];

    }

}

//删除按钮的事件

- (void)delButtonClick

{

    NSMutableIndexSet*index =[NSMutableIndexSet indexSet];

   for(NSIndexPath* indexPathin_delArray) {

        [index addIndex:indexPath.row];

    }

    [_dateArray removeObjectsAtIndexes:index];

    [_tableView deleteRowsAtIndexPaths:_delArray withRowAnimation:UITableViewRowAnimationAutomatic];

    [_delArray removeAllObjects];

}

//允许编辑

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{

   returnYES;

}

//指定编辑模式,插入,删除

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{

   //单插入

   //return UITableViewCellEditingStyleInsert ;

   //多选删除

   returnUITableViewCellEditingStyleInsert |UITableViewCellEditingStyleDelete;

}

//触发编辑方法;根据editingStyle来判断时那种类型

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{

   //删除

   if(editingStyle ==UITableViewCellEditingStyleDelete) {

       //先从数组删除

        [_dateArray removeObjectAtIndex:indexPath.row];

       //再从表格删除

       //删除行,可以单行,也可以多行

        [_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationRight];

    }

   if(editingStyle ==UITableViewCellEditingStyleInsert) {

       //先插入数组

        [_tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

    }

}

//更改删除按钮上的文本

- (NSString*)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{

   return@"删掉我吧";

}

//编辑时 数据数组的处理

//多选删除 选中

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

   if(tableView.editing) {

        [_delArray addObject:indexPath];

    }

}

//取消选中

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath

{

   if(tableView.editing) {

        [_delArray removeObject:indexPath];

    }

}

9、在AppDelegate.m里面添加UINavigationController,视图控制

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

    self.window=[[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];

   //Override point for customization after application launch.

    self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController"bundle:nil] autorelease];

    UINavigationController*nc =[[UINavigationController alloc]initWithRootViewController:self.viewController];

    self.window.rootViewController=nc;

    [self.window makeKeyAndVisible];

   returnYES;

}

10、Cell的三种创建方法

方法1:自己创建 继承UITableViewCell 的类

#import<UIKit/UIKit.h>

@interfaceUserCell : UITableViewCell

@property (nonatomic, retain) UILabel*userLabel;

@property (nonatomic, retain) UIImageView*userView;

@end

.m文件

#import"UserCell.h"

@implementationUserCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier

{

    self=[super initWithStyle:style reuseIdentifier:reuseIdentifier];

   if(self) {

        [self makeView];

    }

   returnself;

}

//自建View

- (void)makeView{

   //60

    self.userView = [[[UIImageView alloc] initWithFrame:CGRectMake(5,5,50,50)] retain];

    [self.contentView addSubview:self.userView];

    [self.userView release];

    self.userLabel= [[UILabel alloc] initWithFrame:CGRectMake(70,10,200,20)];

    [self.contentView addSubview:self.userLabel];

    [self.userLabel release];

}

//由于上面property中写了retain,这里需要再次释放,

- (void)dealloc{

//    [self.userView release];

//    [self.userLabel release];

    self.userLabel =nil;

    self.userView=nil;

    [super dealloc];

}

@end

方法二:用XIB创建

1.创建的时候Class的名字写和。h文件一样的名字

2.Table View Cell里面的Identifiel属性 设置成ID,和.m文件的索引字符串一样

3.在XIB里面只能创建一个CELL,不能由其他孤立的控件,删除的时候要用 delete键删除,不然不够干净

4.设置 控件的Tag值

5.在.m文件里面

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"ID"];

   if(cell ==nil) {

        cell= [[[NSBundle mainBundle] loadNibNamed:@"UserCell"owner:self options:nil] lastObject];

    }

    UILabel* label = (UILabel*)[cell viewWithTag:20];

    UIImageView* imageView = (UIImageView*)[cell viewWithTag:10];

    label.text=[_dataArray objectAtIndex:indexPath.row];

    imageView.image= [UIImage imageNamed:@"1.png"];

   returncell;

}

方法三:UserCell 和XIB象结合

1.修改UserCell.h文件

#import<UIKit/UIKit.h>

@interfaceUserCell : UITableViewCell

@property (nonatomic, retain) IBOutlet UILabel*userLabel;

@property (nonatomic, retain) IBOutlet UIImageView*userView;

@end

2.在XIB里面 建立空间的索引:按 右键,拖拉线

3..m文件

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    UserCell* cell = [tableView dequeueReusableCellWithIdentifier:@"ID"];

   if(cell ==nil) {

        cell= [[[NSBundle mainBundle] loadNibNamed:@"UserCell"owner:self options:nil] lastObject];

    }

    cell.userLabel.text=[_dataArray objectAtIndex:indexPath.row];

    cell.userView.image= [UIImage imageNamed:@"1.png"];

   returncell;

}

11、 设置行高

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

   return60;

}

行高自适应:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

   //列寬

    CGFloat contentWidth =self.tableView.frame.size.width;

   //用何種字體進行顯示

    UIFont *font = [UIFont systemFontOfSize:13];

   //該行要顯示的內容

    NSString *content =[data objectAtIndex:indexPath.row];

   //計算出顯示完內容需要的最小尺寸

    CGSize size = [content sizeWithFont:font constrainedToSize:CGSizeMake(contentWidth,1000) lineBreakMode:UILineBreakModeWordWrap];

       //這裏返回需要的高度

   returnsize.height;

}

//contentWidth一般可以直接设置成屏幕宽度,或者一个定值,这样就简单了

//系统是先把全部的行高设置完后,才会进行cell的内容设置,所以在设置行高的时候时无法获取cell的

//Customize the appearance of table view cells.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

   staticNSString *CellIdentifier =@"Cell";

   //列寬

    CGFloat contentWidth =self.tableView.frame.size.width;

   //用何種字體進行顯示

    UIFont *font = [UIFont systemFontOfSize:13];   

   //該行要顯示的內容

    NSString *content =[data objectAtIndex:indexPath.row];

   //計算出顯示完內容需要的最小尺寸

    CGSize size = [content sizeWithFont:font constrainedToSize:CGSizeMake(contentWidth,1000) lineBreakMode:UILineBreakModeWordWrap];

   //構建顯示行

    UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

   if(cell ==nil) {

        cell=[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

    }

    CGRect rect= [cell.textLabel textRectForBounds:cell.textLabel.frame limitedToNumberOfLines:0];

   //設置顯示榘形大小

    rect.size =size;

   //重置列文本區域

    cell.textLabel.frame =rect;

    cell.textLabel.text=content;

   //設置自動換行(重要)

    cell.textLabel.numberOfLines =0;

   //設置顯示字體(一定要和之前計算時使用字體一至)

    cell.textLabel.font =font;

   returncell;

}

12、获取cell的方法

NSIndexPath*indexPath2 = [NSIndexPath indexPathForItem:indexPath.row inSection:0];

BookCell*cell = (BookCell *)[_tableView  cellForRowAtIndexPath:indexPath2]

13.预加载cell高度

在开发中也遇到了UITableView刷新跳动的问题,搜索一下解决方案,但是基本都是如下的做法

    _tableView.estimatedRowHeight = 0;

    _tableView.estimatedSectionHeaderHeight = 0;

    _tableView.estimatedSectionFooterHeight = 0;

这一方案实际上是禁用了自动计算,从而使UITableView刷新不再跳动。

但是这是一个带有误伤的方案。estimatedRowHeight = 0 同时禁用了方便的AutomaticDimension。

对于手动计算高度的方式,这样是没什么问题的,但是如果用到了AutomaticDimension,怎么办呢。

一个简单有效的方案,就是缓存高度。

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath

{

    NSNumber *heightNumber = [self.cellHeightDict objectForKey:indexPath];

    CGFloat height = 50;

    if(heightNumber)

    {

        height = heightNumber.floatValue;

    }

    return height;

}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

{

    CGFloat cellHeight = cell.frame.size.height;

    [self.cellHeightDict setObject:@(cellHeight) forKey:indexPath];

}

方案的本质是提供准确的estimatedRowHeight使得UITableView的contentSize计算准确,从而不会产生所谓的跳动现象。

这其实也揭示了一点,estimatedRowHeight其实并非应该随意设置,而是应该尽可能的准确,日常使用可能会忽略这一点,所以会有许多奇怪的bug出现,这些都是没有准确使用的结果。(当然,会有一些准确使用也有的奇怪问题)

当然,如果Header和Footer也使用estimated的话,就在willDisplayHeaderView 和 willDisplayFooterView 把实际高度也存储起来就行了。不需要的话就把estimated设置为0。

UITableView的方法总结

1.创建一个UITableView对象

ITableView *tableView = [[UITableView alloc]initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain];

2.separatorColor 分割线颜色

 ableView.separatorColor = [UIColor redColor];

3.rowHeight 调整每个cell点高度(默认44)

 tableView.rowHeight = 60;

4.reloadData 刷新数据

[tableView reloadData];

5.协议两个必须实现的方法

   控制一个section中cell的多少

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

   控制cell中的内容

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)

indexPath

6.选中cell时候使用的方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

7.取消选中时候用的方法(不常用)

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath

8.控制分区个数

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

9.section上Header显示的内容

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

10.section上Footer显示的内容

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section

11.section顶部的高度

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

12.cell的高度

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

13 该方法返回值用于在表格右边建立一个浮动的索引

- (NSArray*)sectionIndexTitlesForTableView:(UITableView*)tableView;

cell相关:

1.返回表格中指定indexPath对应的cell

- (UITableViewCell*)cellForRowAtIndexPath:(NSIndexPath*)indexPath;

2.返回指定cell的indexPath

- (NSIndexPath*)indexPathForCell:(UITableViewCell*)cell;

3.返回表格中指定点所在的indexPath

- (NSIndexPath*)indexPathForRowAtPoint:(CGPoint)point;

4.返回表格中指定区域内所有indexPath 组成的数组

- (NSArray*)indexPathsForRowsInRect:(CGRect)rect;

5.返回表格中所有可见区域内cell的数组

- (NSArray*)visibleCells;

6.返回表格中所有可见区域内cell对应indexPath所组成的数组

- (NSArray*)indexPathsForVisibleRows;

7.控制该表格滚动到指定indexPath对应的cell的顶端 中间 或者下方

- (void)scrollToRowAtIndexPath:(NSIndexPath*)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;

8.控制该表格滚动到选中cell的顶端 中间 或者下方

-(void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;

处理单元格的选中

1.控制该表格是否允许被选中

@property(nonatomic)BOOLallowsSelection

2.控制该表格是否允许多选

@property(nonatomic)BOOLallowsMultipleSelection

3.控制表格处于编辑状态时是否允许被选中

@property(nonatomic)BOOLallowsSelectionDuringEditing;

4.控制表格处于编辑状态时是否允许被多选

@property(nonatomic)BOOLallowsMultipleSelectionDuringEditing

5.获取选中cell对应的indexPath

- (NSIndexPath*)indexPathForSelectedRow;

6.获取所有被选中的cell对应的indexPath组成的数组

- (NSArray*)indexPathsForSelectedRows

7.控制该表格选中指定indexPath对应的表格行,最后一个参数控制是否滚动到被选中行的顶端 中间 和底部

- (void)selectRowAtIndexPath:(NSIndexPath*)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;

8.控制取消选中该表格中指定indexPath对应的表格行

- (void)deselectRowAtIndexPath:(NSIndexPath*)indexPath animated:(BOOL)animated;

9.当用户将要选中表格中的某行时触发方法

- (NSIndexPath*)tableView:(UITableView*)tableView willSelectRowAtIndexPath:(NSIndexPath*)indexPath;

10.当用户完成选中表格中的某行时触发方法

-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath

11.当用户将要取消选中表格中某行时触发

- (NSIndexPath*)tableView:(UITableView*)tableView willDeselectRowAtIndexPath:(NSIndexPath*)indexPath

12.当用户完成取消选中表格中某行时触发

- (void)tableView:(UITableView*)tableView didDeselectRowAtIndexPath:(NSIndexPath*)indexPath

关于对表格的编辑

1.对表格控件执行多个连续的插入,删除和移动操作之前调用这个方法开始更新

- (void)beginUpdates;

2.对表格控件执行多个连续的插入,删除和移动操作之后调用这个方法结束

- (void)endUpdates;

3.在一个或多个indexPath处插入cell

- (void)insertRowsAtIndexPaths:(NSArray*)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

4.删除一个或多个indexPath处的cell

- (void)deleteRowsAtIndexPaths:(NSArray*)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

5.将制定indexPath处的cell移动到另个一indexPath处

- (void)moveRowAtIndexPath:(NSIndexPath*)indexPath toIndexPath:(NSIndexPath*)newIndexPath

6.指定的indexSet所包含的一个或多个分区号对应的位置插入分区

- (void)insertSections:(NSIndexSet*)sections withRowAnimation:(UITableViewRowAnimation)animation;

7.删除指定indexSet所包含的一个或多个分区号所对应的分区

- (void)deleteSections:(NSIndexSet*)sections withRowAnimation:(UITableViewRowAnimation)animation;

8.将指定分区移动到另一个位置

- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection

@protocolUITableViewDataSource协议中

9.该方法返回值决定指定indexPath对应的cell是否可以编辑

- (BOOL)tableView:(UITableView*)tableView canEditRowAtIndexPath:(NSIndexPath*)indexPath;

10.该方法返回值决定指定indexPath对应的cell是否可以移动

- (BOOL)tableView:(UITableView*)tableView canMoveRowAtIndexPath:(NSIndexPath*)indexPath;

11.当用户对指定表格行编辑(包括插入和删除)时触发该方法

- (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath;

12.该方法触发移动  通常对数据进行处理(重要)

- (void)tableView:(UITableView*)tableView moveRowAtIndexPath:(NSIndexPath*)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath;

@protocolUITableViewDelegate协议中

13.开始/完成 编辑时调用的两个方法

- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath*)indexPath;

- (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath*)indexPath;

14.该方法返回值决定了 indexPath处的cell 的编辑状态  返回值为枚举类型 分别为 None Delete Insert

- (UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath;

15.该方法决定了 cell处于被编辑状态时是否应该缩进  若未重写 所有cell处于编辑状态时都会缩进

- (BOOL)tableView:(UITableView*)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath*)indexPath;

UITableViewCell:UIView

这里涉及到自定义UITableViewCell以下为具体步骤以及需要注意到地方

1.首先创建一个类继承UITableViewCell

2.把自定义cell上到自定义视图全部设置为属性(注意:属性名一定不要和系统属性命重复e.g.  imageView,textLable,detailTextLable)

3.在cell的初始化方法中对自定义视图对属性初始化,在初始化对时候可以不指定frame(注意,这里加载到视图上时加载到contentView上同时注意内存管理)

4.在layoutSubviews方法中完成最后操作通常给出frame(注意,这个方法为系统自带方法,当一个cell显示到屏幕上之前,最后调用到一个方法,所有cell到操作包括赋值,调整高度等都已经完成一定不要忘记[super layoutSubviews];)

附加:当一个cell被选中的方法

- (void)setSelected:(BOOL)selected animated:(BOOL)animated

一些小操作:

//将单元格的边框设置为圆角

cell.layer.cornerRadius=12;

cell.layer.masksToBounds=YES;

UITableView-------表视图--继承UIScrollView并遵守NSCoding协议

属性

frame-------------设置控件的位置和大小

backgroundColor--------设置控件的颜色

style--------获取表视图的样式

dataSource---------设置UITableViewDataSource的代理

delegate---------设置UITableViewDelegate代理

sectionHeaderHeight------设置组表视图的头标签高度

sectionFooterHeight--------设置级表视图的尾标签高度

backgroundView----------设置背景视图,只能写入

editing----------是否允许编辑,默认是NO

allowsSelection----------在非编辑下,行是否可以选中,默认为YES

allowsSelectionDuringEditing----------控制某一行时,是否可以编辑,默认为NO

allowsMultipleSelection--------是否可以选择多行,默认为NO

allowsMutableSelectionDuringEditing----------在选择多行的情况下,是否可以编辑,默认为NO

sectionIndexMinimumDisplayRowCount-------------显示某个组索引列表在右边当行数达到这个值,默认是NSInteger的最大值

sectionIndexColor------------选择某个部分的某行改变这一行上文本的颜色

sectionIndexTrackingBackgroundColor--------设置选中某个部分的背景颜色

separatorStyle----------设置单元格分隔线的样式

separatorColor---------设置选中单元格分隔线的颜色

tableHeaderView---------设置组表的头标签视图

tableFooterView----------设置组表的尾标签视图

UITableView类目属性

section--------获取当前在哪个组内

row------------获取当前单元格是第几行

方法:

初始化方法:

initWithFrame:-----------设置表的大小和位置

initWithFrame:style---------设置表的大小,位置和样式(组,单一)

setEditing:----------表格进入编辑状态,无动画

setEditing: animated:---------表格进入编辑状态,有动画

reloadData---------------刷新整个表视图

reloadSectionIndexTitles--------刷新索引栏

numberOfSections-----------获取当前所有的组

numberOfRowsInSection:---------获取某个组有多少行

rectForSection:----------获取某个组的位置和大小

rectForHeaderInSection:---------获取某个组的头标签的位置和大小

rectForFooterInSection:-----------获取某个组的尾标签的位置和大小

rectForRowAtIndex:-----------获取某一行的位置和大小

indexPathForRowAtPoint-------------点击某一个点,判断是在哪一行上的信息。

indexPathForCell:------------获取单元格的信息

indexPathsForRowsInRect:---------在某个区域里会返回多个单元格信息

cellForRowAtIndexPath:-------------通过单元格路径得到单元格

visibleCells-----------返回所有可见的单元格

indexPathsForVisibleRows--------返回所有可见行的路径

headerViewForSection:--------设置头标签的视图

footerViewForSection;----------设置尾标签的视图

beginUpdates--------只添加或删除才会更新行数

endUpdates---------添加或删除后会调用添加或删除方法时才会更新

insertSections:withRowAnimation:-----------插入一个或多个组,并使用动画

insertRowsIndexPaths:withRowAnimation:-------插入一个或多个单元格,并使用动画

deleteSections:withRowAnimation:--------删除一个或多个组,并使用动画

deleteRowIndexPaths:withRowAnimation:--------删除一个或多个单元格,并使用动画

reloadSections:withRowAnimation:---------更新一个或多个组,并使用动画

reloadRowIndexPaths:withRowAnimation:-------------更新一个或多个单元格,并使用动画

moveSection:toSection:-------------移动某个组到目标组位置

moveRowAtIndexPath:toIndexPath:-----------移动个某个单元格到目标单元格位置

indexPathsForSelectedRow----------返回选择的一个单元格的路径

indexPathsForSelectedRows---------返回选择的所有的单元格的路径

selectRowAtIndexPath:animation:scrollPosition---------设置选中某个区域内的单元格

deselectRowAtIndexPath:animation:----------取消选中的单元格

重用机制

dequeueReusableCellWithIdentifier:---------获取重用队列里的单元格

UITableViewDataSource代理方法:

方法:

numberOfSectionsInTableView:------------设置表格的组数

tableView:numberOfRowInSection:----------设置每个组有多少行

tableView:cellForRowAtIndexPath:---------设置单元格显示的内容

tableView:titleForHeaderInSection:---------设置组表的头标签视图

tableView:titleForFooterInSection:-----------设置组表的尾标签视图

tableView:canEditRowAtIndexPath:---------设置单元格是否可以编辑

tableView:canMoveRowAtIndexPath:--------设置单元格是否可以移动

tableView:sectionIndexTitleForTableView:atIndex:-------设置指定组的表的头标签文本

tableView:commitEditingStyle:forRowAtIndexPath:----------编辑单元格(添加,删除)

tableView:moveRowAtIndexPath:toIndexPath-------单元格移动

UITableViewDelegate代理方法:

tableView:willDisplayCell: forRowAtIndexPath:-----------设置当前的单元格

tableView: heightForRowAtIndexPath:-----------设置每行的高度

tableView:tableView heightForHeaderInSection:-----------设置组表的头标签高度

tableView:tableView heightForFooterInSection:-------------设置组表的尾标签高度

tableView: viewForHeaderInSection:----------自定义组表的头标签视图

tableView: viewForFooterInSection: ----------自定义组表的尾标签视图

tableView: accessoryButtonTappedForRowWithIndexPath:-----------设置某个单元格上的右指向按钮的响应方法

tableView: willSelectRowAtIndexPath:-----------获取将要选择的单元格的路径

tableView: didSelectRowAtIndexPath:-----------获取选中的单元格的响应事件

tableView: tableView willDeselectRowAtIndexPath:------------获取将要未选中的单元格的路径

tableView: didDeselectRowAtIndexPath:-----------获取未选中的单元格响应事件

执行顺序如下:

第一轮:

1、numberOfSectionsInTableView    :假如section=2,此函数只执行一次,假如section=0,下面函数不执行,默认为1

2、heightForHeaderInSection  ,执行两次,此函数执行次数为section数目

3、heightForFooterInSection  ,函数属性同上,执行两次

4、numberOfRowsInSection    ,此方法执行一次

5、heightForHeaderInSection     ,此方法执行了两次,我其实有点困惑为什么这里还要调用这个方法

6、heightForFooterInSection   ,此方法执行两次,

7、numberOfRowsInSection,执行一次

8、heightForRowAtIndexPath  ,行高,先执行section=0,对应的row次数

第二轮:

1、numberOfSectionsInTableView ,一次

2、heightForHeaderInSection  ,section次数

3、heightForFooterInSection    ,section次数

4、numberOfRowsInSection    ,一次

5、heightForHeaderInSection  ,执行section次数

6、heightForFooterInSection,执行section次数

7、numberOfRowsInSection,执行一次

8、heightForRowAtIndexPath,行高,先执行一次

9、cellForRowAtIndexPath

10、willDisplayCell

然后8、9、10依次执行直到所有的cell被描画完毕

链接:https://www.jianshu.com/p/64c7e5f168b9

https://www.jianshu.com/p/64c7e5f168b9

////tableView停止刷新

上一篇下一篇

猜你喜欢

热点阅读