我把UICollectionView
放进了UIView
。
我正在使用自己的UICollectionViewCell
课程。
3.错误是“类型'TimeLineViewController'不符合协议UICollectionViewDataSource
”
4.如果我将func collectionView(collectionView: UICollectionView
,cellForItemAtIndexPath indexPath: NSIndexPath)
的返回类型更改为UICollectionViewCell
,则不会出现错误。
这是我的代码:
import UIKit
class TimeLineViewController: UIViewController, UICollectionViewDataSource,UICollectionViewDelegate {
@IBOutlet weak var TimeLineColleciontView: UICollectionView!
// TODO TODO set cell size permeantly
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: collectionView.frame.width-20,
height: (collectionView.frame.width-20) * 1.2 )
}
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 3
}
func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
return 1
}
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> TimeLineCollectionViewCell {
let id = "TimeLineCell"
let cell = collectionView.dequeueReusableCellWithReuseIdentifier(id, forIndexPath: indexPath) as! TimeLineCollectionViewCell
return cell
}
override func preferredStatusBarStyle() -> UIStatusBarStyle {
return UIStatusBarStyle.LightContent
}
override func viewDidLoad() {
super.viewDidLoad()
self.TimeLineColleciontView.backgroundColor = UIColor(white: 0, alpha: 0)
TimeLineColleciontView.dataSource = self
TimeLineColleciontView.delegate = self
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
我的细胞类很简单:
import UIKit
class TimeLineCollectionViewCell: UICollectionViewCell {
var cover : UIImageView = UIImageView()
var date : UILabel = UILabel()
override func awakeFromNib() {
cover.frame = CGRect(x: 0, y: 0, width: self.frame.width, height: self.frame.width)
date.frame = CGRect(x: 0, y: 0, width: 300, height: 300)
self.insertSubview(cover, atIndex: 0)
self.insertSubview(date, atIndex: 2)
}
}
为了使TimeLineViewController
类符合UICollectionViewDataSource
协议,你应该为UICollectionViewCell
函数返回cellForItemAtIndexPath
。由于您已将函数签名(返回类型)更改为TimeLineCollectionViewCell
,因此您收到此错误。
将cellForItemAtIndexPath
函数的返回类型设为UICollectionViewCell
,并在函数中返回TimeLineCollectionViewCell
的出列实例。由于UICollectionViewCell
是TimeLineCollectionViewCell
的父类,因此您不会看到错误。
注意:您必须在必要时将返回的
UICollectionViewCell
值从cellForItemAtIndexPath
转换为TimeLineCollectionViewCell