码迷,mamicode.com
首页 >  
搜索关键字:tableview    ( 2243个结果
ios学习记录 day42 UI18 集合视图
集合视图UICollectionView 简单来说就是多列的TableView 它们同样是datasource和delegate设计模式UICollectionViewLayout是一个对View布局和行为描述的类 UICollectionViewFlowLayout是它的子类
分类:移动开发   时间:2014-07-22 23:14:53    阅读次数:395
取消taleView上下扯动
if (ios_Vewsion_5_Or_Above) {//iOS 5系统之后的版本         self.tableView.bounces = NO;     } else {         for (id subview in self.tableView.subviews)             if ([[subview class] isSubclassOfCl...
分类:其他好文   时间:2014-07-22 23:03:13    阅读次数:281
两种局部刷新UITableView的方法的使用条件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ //1.取消选中这一行 [tableView deselectRowAtIndexPath:indexPath.....
分类:其他好文   时间:2014-07-22 22:59:54    阅读次数:216
取消记录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
自定义Cell的 两种方法!
1.通过xib自定义cell* 添加tableView* 加载团购数据* 新建xib,获取子控件* 封装* 最后引入headerView和footerView(插入广告,加载更多)2.通过代码自定义cell* 引入UITableViewController* 加载模型数据,用自带的cell展示基本数...
分类:其他好文   时间:2014-05-04 20:31:04    阅读次数:430
iOS tableview
每个section的row数量(都是从0下标开始)(http://blog.csdn.net/hmt20130412/article/details/20831377)
分类:移动开发   时间:2014-05-04 00:29:14    阅读次数:322
IOS-tableView 设置圆角
// 设置 tableView整体的圆角设置 // /// 设置圆角// v_tableview.layer.cornerRadius = 7;// v_tableview.layer.masksToBounds = YES;// /// 设置边框// v_tableview.layer.bord....
分类:移动开发   时间:2014-05-01 14:16:37    阅读次数:636
IOS7 UITableView一行滑动删除后 被删除行的下一行的点击事件将被忽略解决办法
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{ returnUITableViewCellEdit...
分类:移动开发   时间:2014-05-01 13:30:30    阅读次数:385
tableView 删除一行后下一行点击事件被忽略
【转】- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{returnUITableViewCellEditi...
分类:其他好文   时间:2014-05-01 11:57:48    阅读次数:292
2243条   上一页 1 ... 222 223 224 225 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!