tableview顶部spring图像效果的IOS实现
来源:爱站网时间:2020-09-03编辑:网友分享
在tableview的顶部有一个图像,当向下滑动tableview时,图片将被放大,当向上滑动时,图片将异步向上移动和消失,下面我们带大家一起来了解tableview顶部spring图像效果的IOS实现吧!
在tableview的顶部有一个图像,当向下滑动tableview时,图片将被放大,当向上滑动时,图片将异步向上移动和消失,下面我们带大家一起来了解tableview顶部spring图像效果的IOS实现吧!
一种思路是将图片放置tableView的tableHeaderView上当tablview下移改变图片的frame达到效果。当然这个效果特别简单,高手可以略过。
代码如下
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
以上就是爱站技术频道小编为大家介绍的tableview顶部spring图像效果的IOS实现,希望可以帮助到对此感兴趣的你,让你更了解这个行业的需求。