时间:2021-05-02
大家可能注意到有些tableView的顶部图片,会随着你拉伸而跟着拉伸变大。本文实例为大家分享了ios实现tableView顶部“弹簧”图片,供大家参考,具体内容如下
一种思路是将图片放置tableView的tableHeaderView上当tablview下移改变图片的frame达到效果。当然这个效果特别简单,高手可以略过。
代码如下
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 import UIKit class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate { lazy var myTableView : UITableView! = { var tableView = UITableView.init(frame: self.view.frame,style:UITableViewStyle.plain) tableView.delegate = self tableView.dataSource = self tableView.register(UITableViewCell.classForCoder(), forCellReuseIdentifier: "mycell") return tableView }() var headerImageView:UIImageView? var headerView:UIView? var headerViewHeight:CGFloat = 0.0 override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. setupUI() } func setupUI(){ headerView = UIView.init(frame: CGRect(x:0,y:0,width:self.view.frame.width,height:300)) headerViewHeight = headerView!.frame.height; self.view.addSubview(headerView!) headerImageView = UIImageView.init(frame: headerView!.frame) headerImageView?.image = UIImage.init(named: "bg-mine") headerView?.addSubview(headerImageView!) myTableView.tableHeaderView = headerView self.view.addSubview(myTableView) } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 2 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell:UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "mycell", for: indexPath) cell.textLabel?.text = "测试" return cell } func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return 50 } func scrollViewDidScroll(_ scrollView: UIScrollView) { let contentOffSetY = scrollView.contentOffset.y if contentOffSetY < 0 { var rect = headerView?.frame rect?.size.height = headerViewHeight - contentOffSetY let headerViewWidth = headerView?.frame.size.width rect?.size.width = headerViewWidth!*(headerViewHeight-contentOffSetY)/headerViewHeight rect?.origin.x = -((rect?.size.width)! - headerViewWidth!)/2 rect?.origin.y = contentOffSetY headerView?.frame = rect! headerImageView?.frame = rect! } } }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
下面这种效果在ios应用中很常见:实现思路:1、创建头部的视图和tableview,需要注意的是tableview要设置contentInset,
ios实现UITableView之间圆角和间隙效果,上图实现UITableView之间的圆角和间隙废话不多说,直接上代码第一步去除系统默认tableview分割
大家可能注意到一些app的tableView的顶部图片,会随着你拉伸而跟着拉伸变大,下面这是我的一些想法原图:效果图:下面附上代码吧,这里的图片不是添加在tab
IOS开发之实现取消tableView返回时cell选中的问题在对表格UITableView操作时,有时当用户选中表格行后,需要自动取消选择。实现这种效果,其原
iostableview设置tableview的分割线实现效果图:[tableviewsetseparatorcolor:[uicolorbluecolor]]