标签:style c class blog code java
//在viewDidLoad方法中创建Toolbar
toolbar = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 66)]; toolbar.backgroundColor = [UIColor redColor]; //添加到tableView中
[self.tableView addSubview:toolbar];
//在当前继承UITableViewController的视图控制器中实现此方法(y值:self.tableView.contentOffset.y)
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
toolbar.frame = CGRectMake(0, self.tableView.contentOffset.y , 320, 66);
}
让TabelView视图中自定义的Toolbar固定(不随cell的移动而移动),布布扣,bubuko.com
让TabelView视图中自定义的Toolbar固定(不随cell的移动而移动)
标签:style c class blog code java
原文地址:http://www.cnblogs.com/hw140430/p/3746605.html