当前位置:   article > 正文

iOS—在tableView上实现始终在屏幕底部有一个button的效果_xib tableview里面增加button 浮动在底部

xib tableview里面增加button 浮动在底部

效果:项目里要实现不论tableView怎么滚动,始终保持屏幕下方有一个button

思路:

假如 当前的tableView是添加在BaseView上的

1. 写一个 button 直接加在 BaseView 上,和 tableView 加在同一个父视图上,frame 写成屏幕下方的frame

示例代码如下:

  1. // 尾部的button
  2. self.footerButton = [UIButton buttonWithType:UIButtonTypeCustom];
  3. self.footerButton.backgroundColor = [UIColor greenColor];
  4. self.footerButton.hidden = YES;
  5. self.footerButton.frame = CGRectMake(0, kScreenHeight-162, kScreenWidth, 44);
  6. self.footerButton.layer.cornerRadius = 5;
  7. self.footerButton.alpha = 0.5;
  8. int callingCount = 5;
  9. NSString *footerBtnTitle = [NSString stringWithFormat:@"Call %d devices",callingCount];
  10. [self.footerButton setTitle:footerBtnTitle forState:UIControlStateNormal];
  11. [self.footerButton addTarget:self action:@selector(postBeginOrEndCallRequest) forControlEvents:UIControlEventTouchUpInside];
  12. [self.BaseView addSubview:self.footerButton];








声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/93628
推荐阅读
相关标签
  

闽ICP备14008679号