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 阅读(191) 评论(0) 收藏 举报
浙公网安备 33010602011771号