UITableView 汇总

来源:互联网 发布:论文抄袭检测软件 编辑:程序博客网 时间:2024/06/13 05:55

UITableView 实现划动删除功能 

对于app应用来说,使用列表的形式展现数据非UITableView莫属.在熟练掌握了用UITableView展示数据以后,是不是也遇到 了需要删除数据的需求?是不是觉得在一行数据上划动一下,然后出现一个删除按钮很酷?废话少说,直奔正题,就由笔者来向您展示一下这个功能的实现是多么容易.


先前的准备工作: 


第一步,准备好数据源.

#import <UIKit/UIKit.h> 


@interface UITableCellSwapDeleteViewController : UIViewController <UITableViewDelegate>{ 

  IBOutlet UITableView *testTableView; 

  NSMutableArray *dataArray; 

}

@property (nonatomic, retain) UITableView *testTableView; 

@property (nonatomic, retain) NSMutableArray *dataArray; 

@end 

      

- (void) viewDidLoad

  [super viewDidLoad]; 

  dataArray = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil]; 

}   

这里笔者定义了并实现了一个一维的可变数组.为什么要用可变数组呢?因为我们要删除里面的数据呀.


 

第二步,展示数据.

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

  // Return the number of sections. 

  return 1; 

}

      

      

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

  // Return the number of rows in the section. 

  return [dataArray count]; 

      

      

// Customize the appearance of table view cells.

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

  static NSString *CellIdentifier = @"Cell"; 

  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 

  if (cell == nil) { 

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

  } 

         

  // Configure the cell... 

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

  return cell; 

}

通过实现上面三个代理方法向UITableView中添加了数据.





通过上面两步就实现了数据展示工作,接下就实现关键的数据删除了.

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

  return YES; 

      

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

  if (editingStyle == UITableViewCellEditingStyleDelete) { 

    [dataArray removeObjectAtIndex:indexPath.row]; 

    // Delete the row from the data source. 

    [testTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; 

  }    

  else if (editingStyle == UITableViewCellEditingStyleInsert) { 

    // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view. 

  }    

}

 启用上面两个代理,并增加数据删除操作:

[dataArray removeObjectAtIndex:indexPath.row];

 在一条数据上向右划动一下.



 点Delete.


 

 是不是就成功删除了一条数据呢?

 按理说故事讲到这里也就讲完了.但是笔者想延伸一下.注意看图二划动以后的"Delete",你有没有想把这个东东改掉的冲动呢?比如改成:下载?其实很简单,其实下面这个代理方法:

 

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

  return @"下载"; 

}

再划动一下,是不是变了呢?


 


 


 此文章转载自http://rainbird.blog.51cto.com/211214/634587

posted @ 2011-09-22 00:55 上帝也孤单 阅读(32) 评论(0) 编辑

2011年9月21日 

UITableView 详细讲解 


 一、建立 UITableView

DataTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)];

[DataTable setDelegate:self];

[DataTable setDataSource:self];

[self.view addSubview:DataTable];

[DataTable release]; 


 


二、UITableView各Method说明

/// Section总数

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

{

  return TitleData;

}


/// 每个section显示的标题

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


  return @"";

}


//指定有多少个分区(Section),默认为1

- (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView

{

  return 4;

}


/// 指定每个分区中有多少行,默认为1

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

{


}


 

/// 绘制Cell

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

{

  static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";

  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];

  if (cell == nil) {

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

  }

  cell.imageView.image = image; //未选cell时的图片

  cell.imageView.highlightedImage = highlightImage;//选中cell后的图片

  cell.textLabel.text = [dataArray objectAtIndex:indexPath.row];  //cell主体文字

  cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

  return cell;

}


 

/// 行缩进

- (NSInteger) tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath

{

  NSUInteger row = [indexPath row];

  return row;

}


/// 改变行的高度

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

{

  return 40;

}


/// 选中Cell响应事件

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

{

  [tableView deselectRowAtIndexPath:indexPath animated:YES];  //选中后的反显颜色即刻消失

}


 

/// 判断选中的行(阻止选中第一行)

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

{

  NSUInteger row = [indexPath row];

  if (row == 0)

    return nil;


  return indexPath;

}


/// 划动cell是否出现del按钮

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

{

    return YES;

}


 

/// 编辑状态

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

{


}


/// 自定义划动时del按钮内容

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

{

  return @"下载";

}


 


 


 

//定位

[TopicsTable setContentOffset:CGPointMake(0, promiseNum * 44 + Chapter * 20)];



//返回当前所选cell

NSIndexPath *ip = [NSIndexPath indexPathForRow:row inSection:section];

[TopicsTable selectRowAtIndexPath:ip animated:YES scrollPosition:UITableViewScrollPositionNone];



[tableView setSeparatorStyle:UITableViewCellSelectionStyleNone];








[topicsTable setContentSize:CGSizeMake(0,controller.promiseNum * 44)];

//右侧添加一个索引表

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

}


//返回Section标题内容

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

}





//跳到指的row or section

[tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:NO];


 


三、在UITableViewCell上建立UILable多行显示


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

    static NSString *CellIdentifier = @"Cell";   

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];

  UILabel *Datalabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 320, 44)];

  [Datalabel setTag:100];

  Datalabel.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

  [cell.contentView addSubview:Datalabel];

  [Datalabel release];

 } 

 UILabel *Datalabel = (UILabel *)[cell.contentView viewWithTag:100];

 [Datalabel setFont:[UIFont boldSystemFontOfSize:18]];

 Datalabel.text = [data.DataArray objectAtIndex:indexPath.row];

 cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    return cell;

}


 


 


//cell右边按钮格式


typedef enum {

    UITableViewCellAccessoryNone,                   // don't show any accessory view

    UITableViewCellAccessoryDisclosureIndicator,    // regular chevron. doesn't track

    UITableViewCellAccessoryDetailDisclosureButton, // blue button w/ chevron. tracks

    UITableViewCellAccessoryCheckmark               // checkmark. doesn't track

} UITableViewCellAccessoryType

 


//是否加换行线


typedef enum {

    UITableViewCellSeparatorStyleNone,

    UITableViewCellSeparatorStyleSingleLine

} UITableViewCellSeparatorStyle


 


//改变换行线颜色


tableView.separatorColor = [UIColor blueColor];

原创粉丝点击