• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 点击时更改 TableView 高度(在 xib 中使用自动布局)

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:00:30 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我的 ViewController 在最初加载时是这样的:

initially

当点击显示按钮时,它必须改变如下: When ShowButton tapped

我的代码是:

- (IBAction)showid)sender {
 [self change];
 [tableView reloadData];
}
- (IBAction)closeid)sender { 
 [self change];
 [tableView reloadData];
}

-(void)change{
  //assigning initial bounds to frame-1
  CGRect frame1=CGRectMake(0, _pastProcessTV.frame.origin.y, self.view.bounds.size.width, self.pastProcessTV.bounds.size.height); 
  //assigning new bounds to frame-2
  CGRect frame2=CGRectMake(0, **CGFloat y**,self.view.bounds.size.width,***CGFloat height***);

   if (_showFullButton.isTouchInside) {
          tableView.frame = frame2;
    }
   else{
          tableview.frame = frame1;
   }
}

我尝试了不同的方法。它不起作用。任何人都可以帮我提供 Y 坐标和宽度



Best Answer-推荐答案


当您使用自动布局时,您必须获取 tableview 的 topconstraint 的导出,并且当您想要扩展它时将其值设置为 0

所以它会按预期工作

如果您使用的是 iOS 7

[self.view layoutIfNeeded]是必填项

关于ios - 点击时更改 TableView 高度(在 xib 中使用自动布局),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35746142/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap