亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何模擬實現中獎名單循環滾動效果

發布時間:2021-09-27 15:21:10 來源:億速云 閱讀:166 作者:小新 欄目:編程語言

這篇文章主要介紹了iOS如何模擬實現中獎名單循環滾動效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

思路:

(1)控件:一個父View,依次添加兩個tableVew,使其上下緊挨著,高度均等于所有cell的總高度,且加載相同的的數據,父視圖的clipsToBounds屬性一定要設置為true

(2)滾動:使用計時器,調整時間及滾動大小,使展示平滑

(3)循環算法:當A列表滾動出界面時,就把它添加在B列表的下面,B列表滾動出界面時,就把它添加在A列表的下面,形成循環效果

3.Swift版核心代碼(可直接復制粘貼看效果):

import UIKitclass ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource{ var tableView:UITableView! var doubleTableView:UITableView! let kScreenW = UIScreen.main.bounds.size.width let kXPercent = UIScreen.main.bounds.size.width / 375.0 let kBorderW = CGFloat(15.0) let kYPercent = UIScreen.main.bounds.size.width / 375.0 let cellId:String = "drawViewCell1" override func viewDidLoad() {  super.viewDidLoad()  self.addListTableView() } func addListTableView(){  let tableWidth = kScreenW - kBorderW*3  let tableBgView = UIView(frame: CGRect(x: (kScreenW-tableWidth)/2.0,y: 100*kYPercent,width: tableWidth,height: 148*kYPercent))  tableBgView.clipsToBounds = true  tableBgView.backgroundColor = UIColor.yellow  self.view.addSubview(tableBgView)  //  tableView = UITableView(frame: CGRect(x: 0,y: 0,width: tableWidth,height: 148*kYPercent*2), style: UITableViewStyle.plain)  tableView.backgroundColor = UIColor.clear  tableView.delegate = self  tableView.dataSource = self  tableView.separatorStyle = UITableViewCellSeparatorStyle.none  tableBgView.addSubview(tableView)  doubleTableView = UITableView(frame: CGRect(x: 0,y: tableView.frame.origin.y+tableView.frame.size.height,width: tableWidth,height: 148*kYPercent*2), style: UITableViewStyle.plain)  doubleTableView.backgroundColor = UIColor.clear  doubleTableView.delegate = self  doubleTableView.dataSource = self  doubleTableView.separatorStyle = UITableViewCellSeparatorStyle.none  tableBgView.addSubview(doubleTableView)  //  Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(personListScroll(timer:)), userInfo: nil, repeats: true) } @objc func personListScroll(timer:Timer){  // 1>移動tableView的frame  var newTableViewframe = self.tableView.frame  newTableViewframe.origin.y -= 2*kYPercent  if (newTableViewframe.origin.y < -(doubleTableView.frame.size.height)) {   newTableViewframe.origin.y = tableView.frame.size.height  }  self.tableView.frame = newTableViewframe  // 2>移動doubleTableView的frame  var newDoubleViewframe = self.doubleTableView.frame  newDoubleViewframe.origin.y -= 2*kYPercent  if newDoubleViewframe.origin.y < -(tableView.frame.size.height) {   newDoubleViewframe.origin.y = tableView.frame.size.height  }  self.doubleTableView.frame = newDoubleViewframe } //返回行的個數 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{  return 10 } //返回列的個數 func numberOfSections(in tableView: UITableView) -> Int {  return 1; } //去除頭部空白 func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {  return 0.001 } //去除尾部空白 func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {  return 0.001 } //返回一個cell func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{  //回收池  var cell:UITableViewCell! = tableView.dequeueReusableCell(withIdentifier: cellId)  if cell == nil{//判斷是否為nil   cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: cellId)  }  cell.backgroundColor = UIColor.clear  cell.selectionStyle = UITableViewCellSelectionStyle.none  if tableView == self.tableView{// 測試是否循環滾動   cell.textLabel?.text = "張先生"  }else {   cell.textLabel?.text = "李小姐"  }  return cell } //返回cell的高度 func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat{  return 148/5.0*kYPercent } override func didReceiveMemoryWarning() {  super.didReceiveMemoryWarning() }}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“iOS如何模擬實現中獎名單循環滾動效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

余姚市| 介休市| 富源县| 沙田区| 永吉县| 客服| 北川| 青神县| 龙川县| 仙居县| 包头市| 黄龙县| 赣榆县| 台北市| 平潭县| 赤城县| 漯河市| 泸水县| 吉水县| 永寿县| 山西省| 新丰县| 彭阳县| 汝阳县| 潼南县| 榕江县| 子洲县| 卢湾区| 敖汉旗| 图们市| 商丘市| 三台县| 喜德县| 茌平县| 滨海县| 报价| 屯门区| 金昌市| 比如县| 郁南县| 利津县|