Swift之UICollectionView
UICollectionView可以说是一个比较常用的控件了,在用Swift写的过程中还是遇到了一些问题的,记下来方便下次的使用。
首先在xib中创建一个collectionView,命名为 myCollectionView
创建全局变量let flowLayout = UICollectionViewFlowLayout()
在viewDidLoad()
中进行添加代理等操作
override func viewDidLoad() {
super.viewDidLoad()
myCollectionView.delegate = self
myCollectionView.dataSource = self
initViews()
}func initViews() {
//屏幕宽高
var KSCREEN_HEIGHT =UIScreen.mainScreen().bounds.size.height
var KSCREEN_WIDTH =UIScreen.mainScreen().bounds.size.width
//collectionviewcell 复用标识
private let cellIdentifier = "myCell"
// 竖屏时每行显示4张图片
let shape: CGFloat = 5
let cellWidth: CGFloat = (KSCREEN_WIDTH - 5 * shape) / 4
flowLayout.sectionInset = UIEdgeInsetsMake(0, shape, 0, shape)
flowLayout.itemSize = CGSizeMake(cellWidth, cellWidth / 2 * 3)
flowLayout.minimumLineSpacing = shape
flowLayout.minimumInteritemSpacing = shape
flowLayout.footerReferenceSize = CGSizeMake(KSCREEN_WIDTH, 40)
myCollectionView.setCollectionViewLayout(flowLayout, animated: true)//注册cell
let cellNib = UINib(nibName: "myCollectionViewCell",bundle: nil)
myCollectionView.registerNib(cellNib, forCellWithReuseIdentifier: cellIdentifier)}
【Swift之UICollectionView】接下来就是常用到的实现代理方法
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 5
}
func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
return 1
}func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell:myCollectionViewCell = collectionView.dequeueReusableCellWithReuseIdentifier(cellIdentifier, forIndexPath: indexPath) as! myCollectionViewCell
// 填入相应的数据
return cell
}func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
//点击cell的方法
}
项目中遇到的需求进入页面整个页面要拉到最下面,使用
setContentOffset
方法即可,不过一开始总是进入页面后没有反应,经过多次实验,并参考网上的答案,写在viewDidAppear
方法中成功了。不过这样的话页面会在进入后在自动下拉到最下方,我是暂时用一个0.5秒到刷新动画来盖住了页面的动画,具体以后想到更好的解决办法在来更新。override func viewDidAppear(animated: Bool) {
myCollectionView.setContentOffset(CGPointMake(0, myCollectionView.contentSize.height - myCollectionView.frame.size.height), animated: false)
}
推荐阅读
- Android之重新推导设备尺寸
- Day|Day 2 读书笔记---引爆社群之4C法则
- go源码系列之sync.Mutex互斥锁
- React报错之React hook 'useState' is called conditionally
- React报错之React|React报错之React hook 'useState' is called conditionally
- 生与死之间|生与死之间 只有平安与健康
- 舍不滴
- kubernetes/k8s|kubernetes/k8s多节点部署之etcd存储的部署以及flannel网络配置的部署
- go源码系列之sync.RWMutex 读写锁
- 投稿|对话《新神榜:杨戬》导演赵霁:聊“封神宇宙”之前,先做好眼前每一部