0

我正在使用JTAppleCalendar-> https://github.com/patchthecode/JTAppleCalendar 日历插件,我想将 ColectionView 单元格放在 TableView 单元格中,并且我想在添加的事件中显示每个单元格,并带有标题(在 tableview 单元格内),但是当我连接插座给了我;

错误:非法配置:从 ViewController 到 UITableView 的 tableView 出口无效。插座不能连接到重复的内容。

我该如何解决?

CellView.swift

import JTAppleCalendar

class CellView: JTAppleCell {
    @IBOutlet var selectedView: UIView!
    @IBOutlet var dayLabel: UILabel!
    @IBOutlet var Label: UILabel!
}

细胞.斯威夫特

import UIKit

class Cell: UITableViewCell {

    @IBOutlet weak var label : UILabel!

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)


    }
}

视图控制器.Swift

@IBOutlet weak var tableView: UITableView!


  extension ViewController: UITableViewDelegate, UITableViewDataSource {

        func numberOfSections(in tableView: UITableView) -> Int {
            return  1
        }

        func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            return  5
        }

        func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
            let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! Cell

            cell.label?.text = String(indexPath.row)

            return cell
        }

        func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
            tableView.deselectRow(at: indexPath, animated: true)
        }
    }

我的屏幕在下面;

在此处输入图像描述

4

1 回答 1

0

您需要创建 CollectionViewCell 的自定义类并在其上使用 IBOutlets。现在您已经在 ViewController 的类中获取了 customCell 的视图 IBOutlets。

或者

使用标签属性,您可以将该视图与单元格链接。如下在 cellForItemAtIndexPath 中。

let label:UILabel = cell.viewWithTag(101) as! UILabel // 101 tag need to set in storyboard related view 

如何分配标签以查看

https://stackoverflow.com/a/31782616/3901620

于 2017-04-24T13:55:42.550 回答