swift入門者です.
自分で定義したCellをUIcollectionViewで使用したいのですが,うまくいきません.
swift
1 2import UIKit 3 4class ItemListViewController: UIViewController,UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout { 5 6 @IBOutlet weak var collectionView: UICollectionView! 7 8 override func viewDidLoad() { 9 super.viewDidLoad() 10 // Do any additional setup after loading the view, typically from a nib. 11 collectionView.backgroundColor = UIColor(red: 238.0/255, green: 238.0/255, blue: 238.0/255, alpha: 238.0/255) 12 13 collectionView.registerClass(ItemCell.self, forCellWithReuseIdentifier: "cell") 14 view.addSubview(collectionView) 15 } 16 17 override func didReceiveMemoryWarning() { 18 super.didReceiveMemoryWarning() 19 // Dispose of any resources that can be recreated. 20 } 21 22 // MARK: - UICollectionViewDelegate Protocol 23 func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { 24 let cell:ItemCell = collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as! ItemCell 25 26 //title, image, numberともにnilとなってしまい,データをセットできない 27 cell.title?.text = "いちご" 28 cell.image?.image = UIImage(named: "pic/ichigo.png") 29 cell.backgroundColor = UIColor.whiteColor() 30 cell.number?.text = "" 31 cell.number?.backgroundColor = UIColor.clearColor() 32 33 return cell 34 } 35 36 // Screenサイズに応じたセルサイズを返す 37 // UICollectionViewDelegateFlowLayoutの設定が必要 38 func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize { 39 let space:Int = 5 40 let stepperSize:Int = 29 41 let cellSizeWidth:CGFloat = (self.view.frame.size.width - CGFloat(space) * 3) / 2 42 let cellSizeHeight:CGFloat = cellSizeWidth + CGFloat(stepperSize) 43 return CGSizeMake(cellSizeWidth, cellSizeHeight) 44 } 45 46 func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int { 47 return 1 48 } 49 50 func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 51 return 20; 52 } 53} 54
swift
1 2import UIKit 3 4class ItemCell: UICollectionViewCell { 5 6 @IBOutlet weak var title: UILabel! 7 @IBOutlet weak var image: UIImageView! 8 @IBOutlet weak var number: UILabel! 9 10 //商品の個数をステッパーで変更 11 @IBAction func changedStepperValue(sender: UIStepper) { 12 let num = Int(sender.value) 13 //ラベルに表示 14 let gray = UIColor.grayColor() 15 number.backgroundColor = gray.colorWithAlphaComponent(0.6) 16 number.textColor = UIColor.whiteColor() 17 number.text = String(num) 18 19 //0の時は表示しない 20 if num == 0 { 21 number.text = "" 22 number.backgroundColor = UIColor.clearColor() 23 } 24 25 } 26 override init(frame: CGRect){ 27 super.init(frame: frame) 28 } 29 required init?(coder aDecoder: NSCoder){ 30 super.init(coder: aDecoder) 31 } 32 33}
ItemListViewController内でcellのデータをセットしたいのですが,
cell.title?.text = "いちご"
の行では,title
が何故かnilのため,
実行しても,真っ白のcellが20個並ぶだけで,LabelやImageが反映されません.
CollectionReusableViewのIdentifierも"cell"と設定してあります.
outlet接続は何度も見なおしたのですが,原因がわからないので質問させていただきました.
よろしくお願いいたします.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/04/25 00:56