UITableView 小节-

 

UITableView 让列表自动滑动(定位)到某一行

 

NSIndexPath*scrollIndexPath = [NSIndexPathindexPathForRow:10inSection:0];
[[selftableView]scrollToRowAtIndexPath:scrollIndexPath
       atScrollPosition:UITableViewScrollPositionTopanimated:YES];

 

 删除cell的动画

NSIndexPath* path = [NSIndexPath indexPathForRow:2 inSection:0];
NSArray* indexPaths = [NSArray arrayWithObjects:path,nil];
[theTableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationFade];

 

 

 

 

posted on 2016-02-25 00:01  🌞Bob  阅读(189)  评论(0编辑  收藏  举报

导航