前言
公司新項目采用Swift3.0開發(fā)倦零,以前自己用的是OC 封裝的误续,現(xiàn)在用不了,從github上拉下來的好像不行扫茅,都是以前老版本的蹋嵌,還要自己做版本提升,索性自己封裝一個輪播葫隙,很多的輪播實現(xiàn)都是基于ScrollView水平添加多個ImageView實現(xiàn)栽烂,個人覺的不是很好,因為如果要播放的輪播圖太多的話恋脚,這種方法會導(dǎo)致一次性創(chuàng)建多個ImageView,占用內(nèi)存腺办,所以推薦CollectionView。效果圖如下:
使用說明
一切都在代碼中糟描,創(chuàng)建控件
lazy var tableView = UITableView()
lazy var modelMArr = [YWCycleModel]()
var cycleView : YWCycleView?
override func viewDidLoad() {
super.viewDidLoad()
tableView.frame = view.bounds
tableView.delegate = self
tableView.dataSource = self
view.addSubview(tableView)
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
cycleView = YWCycleView(frame: CGRect(x: 0, y: 0, width: view.bounds.width, height: 250))
guard let cycleView = cycleView else {
return
}
cycleView.delegate = self
tableView.tableHeaderView = cycleView
requestData()
}
模擬請求數(shù)據(jù):
func requestData() {
let tempArr = [["title":"中國奧運軍團三金回顧","imageUrl":"http://pic33.nipic.com/20130916/3420027_192919547000_2.jpg"],
["title":"《封神傳奇》進世界電影特效榜單怀喉?山寨的!","imageUrl":"http://imgstore.cdn.sogou.com/app/a/100540002/503008.png"],
["title":"奧運男子4x100自由泳接力 菲爾普斯","imageUrl":"http://i1.hexunimg.cn/2014-08-15/167580248.jpg"],
["title":"頂住丟金壓力 孫楊晉級200自決賽","imageUrl":"http://pic6.huitu.com/res/20130116/84481_20130116142820494200_1.jpg"]];
for dic in tempArr {
let model = YWCycleModel()
model.imageStr = dic["imageUrl"]
model.title = dic["title"]
modelMArr.append(model)
}
guard let cycleView = cycleView else {
return
}
cycleView.dataArr = modelMArr
}
點擊事件代理回調(diào):
extension ViewController: YWCycleViewDelegate {
func cycleViewDidSelected(cycleView: YWCycleView, selectedIndex: NSInteger) {
print("打印了\(selectedIndex)")
}
}
這樣一個輪播模塊就完成了
結(jié)語
只是展示如何使用的代碼,有興趣的同學(xué)歡迎去我的github下載相對應(yīng)的代碼Demo船响,如果覺得還行躬拢,可以放在以后項目中使用。如果代碼哪里有問題灿意,歡迎指教~~~~
ps:因為時間關(guān)系估灿,很多屬性來不及封裝,我會在有時間的時候缤剧,多封裝幾種樣式的馅袁,最后奉上Demo地址:https://github.com/iosyaowei/YWCycleViewDemo