怎么实现TableView 点击section折叠展开,跟QQ好友列表一样的效果
1个回答
推荐于2016-03-08 · 知道合伙人数码行家
关注
展开全部
不清楚是否可以用section做,不过可以点击的表头是cell,好友列表也是一堆cell,将其余cell隐藏,点击第一个cell,其余cell以动画形式下拉弹出。
self.tableView.frame = CGRectMaek(0,0,320,0);
[UIView animateWithDuration:0.75 animations:^{
self.tableView.frame = CGRectMake(0, 0, 320, 504);
} completion:^(BOOL finished) {
}];
一个思路而已。...
self.tableView.frame = CGRectMaek(0,0,320,0);
[UIView animateWithDuration:0.75 animations:^{
self.tableView.frame = CGRectMake(0, 0, 320, 504);
} completion:^(BOOL finished) {
}];
一个思路而已。...
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询