Believe in your own future, will thank yourself right now Sinner Yun

Sinner_Yun

2016年8月17日

简述UICollectionView 使用

摘要: 一、介绍 UICollectionView类负责管理数据的有序集合以及以自定义布局的模式来呈现这些数据,它提供了一些常用的表格(table)功能,此外还增加了许多单栏布局。UICollectionView支持可以用于实现多列网格、 平铺的布局、 圆形的布局和更多的自定义布局,甚至你可以动态地改变它的 阅读全文

posted @ 2016-08-17 15:41 Sinner_Yun 阅读(1619) 评论(0) 推荐(0) 编辑

TableView刷新指定的cell 或section

摘要: 1 //一个section刷新 2 3 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; 4 5 [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; 6 7 ... 阅读全文

posted @ 2016-08-17 11:01 Sinner_Yun 阅读(209) 评论(0) 推荐(0) 编辑

导航