代码之家  ›  专栏  ›  技术社区  ›  user9120563

UICollectionViewCell错误

  •  -1
  • user9120563  · 技术社区  · 7 年前

    我的json数据就是这样,我使用alamofire加载数据,使用objectmapper进行映射。我只是尝试解析json数据并在CollectionView上显示它。然而,我得到了错误。

    这是我的viewcontroller

    import UIKit
    import Alamofire
    import ObjectMapper
    import AlamofireObjectMapper
    
    class ViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource {
        func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
            return schedules?.count ?? 0
    
        }
    
        func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
            let cell = UICollectionViewCell()
            cell.textLabel?.text = schedules?[indexPath.row].title
    
        }
    
    
        @IBOutlet weak var collectionViewData: UICollectionView!
    
        var schedules: [Schedule]?
    
        override func viewDidLoad() {
            super.viewDidLoad()
    
            collectionViewData.dataSource = self
            collectionViewData.delegate = self
    
            loadData()
    
        }
        func loadData() {
            let jsonDataUrl = "https://jsonplaceholder.typicode.com/posts"
    
            Alamofire.request(jsonDataUrl).responseJSON { response in
                self.schedules = Mapper<Schedule>().mapArray(JSONObject: response.result.value)
                self.collectionViewData.reloadData()
            }
        }
    
    
    }
    

    这是我的计划文件代码,用于映射。

    import Foundation
    import ObjectMapper
    import AlamofireObjectMapper
    
    class Schedule: Mappable {
    
        var userId: String
        var id: String
        var title: String
        var body: String
    
        required init?(map: Map) {
            userId = ""
            id = ""
            title = ""
            body = ""
        }
    
        func mapping(map: Map) {
            userId         <- map["userId"]
            id             <- map["id"]
            title          <- map["title"]
            body           <- map["body"]
        }
    }
    

    当我尝试运行它时,我遇到了这样的错误:“UICollectionViewCell”类型的值没有成员“textLabel”

    我试图将“textLabel”添加到viewcontroller,但没有成功。是否应该为CollectionView添加新类?

    1 回复  |  直到 7 年前
        1
  •  0
  •   user9506686 user9506686    7 年前

    下面是一个可以使用的collectionview单元类,它具有textLabel

    class MyCollectionView: UICollectionViewCell {
    
     var textLabel: UILabel!
    
      override init(frame: CGRect) {
        super.init(frame: frame)
        createViews()
      }
    
      required init?(coder aDecoder: NSCoder) {
        fatalError("Cannot initialize")
      }
    
     func createViews() {
       textLabel = UILabel(frame: .zero)
       textLabel.textAlignment = .center
       textLabel.translatesAutoresizingMaskIntoConstraints = false
       textLabel.backgroundColor = UIColor.black
       textLabel.textColor = UIColor.white
       textLabel.font = Font.menuText
       contentView.addSubview(textLabel)
    
       let views: [String: Any] = ["label": textLabel]
    
       let lHFormat = "H:|[label]|"
       let lVFormat = "V:[label]|"
    
       [lHFormat, lVFormat].forEach { format in
       let constraints = NSLayoutConstraint.constraints(withVisualFormat: format,
                                                               options: [],
                                                               metrics: nil,
                                                               views: views)
        contentView.addConstraints(constraints)
    
       }
    }
    

    现在可以注册并使用此单元格,以便使用textLabel属性。