iOS学习之Table View的简单使用(4)

10、设置行的风格

表示UITableViewCell风格的常量有:

UITableViewCellStyleDefault
UITableViewCellStyleSubtle
UITableViewCellStyleValue1
UITableViewCellStyleValue2

可以自己修改看看效果。可以添加一个detail

 cell.detailTextLabel.text =@"打打打打";

return cell; 


iOS学习之Table View的简单使用




11、选择table里的某一行


在.m文件@end之前编写  -(void)table  这时会自动提示可以实现的方法,

iOS学习之Table View的简单使用



我们选择这个方法

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

选中是做个提示,提示选中了那个信息,代码实现如下:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{       NSString *rowString = [self.list objectAtIndex:[indexPath row]];       UIAlertView * alter = [[UIAlertView alloc] initWithTitle:@"选中的行信息" message:rowString delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];       [alter show];   }  

效果:

iOS学习之Table View的简单使用

以上是Plain风格的TableView

例子代码:

 

10、设置行的风格

表示UITableViewCell风格的常量有:

UITableViewCellStyleDefault
UITableViewCellStyleSubtle
UITableViewCellStyleValue1
UITableViewCellStyleValue2

可以自己修改看看效果。可以添加一个detail

 cell.detailTextLabel.text =@"打打打打";

return cell; 


iOS学习之Table View的简单使用




11、选择table里的某一行


在.m文件@end之前编写  -(void)table  这时会自动提示可以实现的方法,

iOS学习之Table View的简单使用



我们选择这个方法

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

选中是做个提示,提示选中了那个信息,代码实现如下:

[cpp]

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{       NSString *rowString = [self.list objectAtIndex:[indexPath row]];       UIAlertView * alter = [[UIAlertView alloc] initWithTitle:@"选中的行信息" message:rowString delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];       [alter show];   }  


效果:

iOS学习之Table View的简单使用

以上是Plain风格的TableView

例子代码:

 

10、设置行的风格

表示UITableViewCell风格的常量有:

UITableViewCellStyleDefault
UITableViewCellStyleSubtle
UITableViewCellStyleValue1
UITableViewCellStyleValue2

可以自己修改看看效果。可以添加一个detail

 cell.detailTextLabel.text =@"打打打打";

return cell; 


iOS学习之Table View的简单使用




11、选择table里的某一行


在.m文件@end之前编写  -(void)table  这时会自动提示可以实现的方法,

iOS学习之Table View的简单使用



我们选择这个方法

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

选中是做个提示,提示选中了那个信息,代码实现如下:

[cpp]

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{       NSString *rowString = [self.list objectAtIndex:[indexPath row]];       UIAlertView * alter = [[UIAlertView alloc] initWithTitle:@"选中的行信息" message:rowString delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];       [alter show];   }  


效果:

iOS学习之Table View的简单使用

以上是Plain风格的TableView

例子代码:

 

10、设置行的风格

表示UITableViewCell风格的常量有:

UITableViewCellStyleDefault
UITableViewCellStyleSubtle
UITableViewCellStyleValue1
UITableViewCellStyleValue2

可以自己修改看看效果。可以添加一个detail

 cell.detailTextLabel.text =@"打打打打";

return cell; 


iOS学习之Table View的简单使用




11、选择table里的某一行


在.m文件@end之前编写  -(void)table  这时会自动提示可以实现的方法,

iOS学习之Table View的简单使用



我们选择这个方法

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

选中是做个提示,提示选中了那个信息,代码实现如下:

[cpp]

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{       NSString *rowString = [self.list objectAtIndex:[indexPath row]];       UIAlertView * alter = [[UIAlertView alloc] initWithTitle:@"选中的行信息" message:rowString delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];       [alter show];   }  


效果:

iOS学习之Table View的简单使用

以上是Plain风格的TableView

例子代码:

免费下载地址在

用户名与密码都是

具体下载目录在 /2012年资料/6月/14日/iOS学习之Table View的简单使用/

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/psfjg.html