0
我使用的是從UICollectionView完全相同的單元格設置,但這次是在UITableView中,原因是我使用了可摺疊標題,因此它需要是UITableView。代碼將幾乎完全相同,除了類型將是UITableViewCell而不是UICollectionViewCell,並且xib文件將會不同。我可以以某種方式使這個代碼重新可用於UITableViewCell而不是複製粘貼?如何在UITableView中使用UICollectionViewCell的相同代碼?
class LoggedExerciseCell: UICollectionViewCell {
// MARK: - IBOutlets
@IBOutlet var cell: UICollectionViewCell!
@IBOutlet var loggedSetTableView: LoggedSetsTableView!
@IBOutlet weak var exerciseName: UILabel!
@IBOutlet weak var exerciseCount: UILabel!
@IBOutlet weak var icon: UIImageView!
@IBOutlet weak var resistanceType: UILabel!
@IBOutlet weak var repetitionType: UILabel!
// MARK: - Object Lifecycle
override init(frame: CGRect) {
super.init(frame: frame)
commonInit()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
// MARK: - Configure Cell
func configure(_ exercise: LoggedExerciseViewModelView) {
self.exerciseName.text = exercise.exerciseName
self.icon.image = UIImage(named: exercise.icon)
self.resistanceType.text = exercise.resistanceType
self.repetitionType.text = exercise.repetitionType
self.loggedSetTableView.loggedExerciseViewModel = exercise
}
}
// MARK: - CommonInit
private extension LoggedExerciseCell {
func commonInit() {
Bundle.main.loadNibNamed("LoggedExerciseCell", owner: self, options: nil)
cell.frame = self.bounds
addSubview(cell)
configureViews()
}
}
// MARK: - ConfigureViews
private extension LoggedExerciseCell {
func configureViews() {
configureIconImageView()
}
func configureIconImageView() {
icon.setCircularImageViewWithBorder(borderWidth: 1.2, withBorderColor: UIColor.darkBlue().cgColor)
}
}
可以使用類似的代碼,但不相同的代碼,因爲電池類不一樣,代表們也不一樣。 – Raptor
遵循那一個非常有用的鏈接https://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell-in-swift/ –
我想你也可以在UICollectionView中擴展標題。 試試這個:https://stackoverflow.com/questions/32046292/uicollectionview-header-change-height-in-ibaction – danieltmbr