自定义UITableViewCell

自定义UITableViewCell

我是新手,我正在制作一个显示电影列表的视图,看起来像是应用商店的主屏幕(水平UITableView),所以自定义UITableViewCell时遇到问题。单元格未显示在UITableView中。不知道为什么以及如何解决!这是我的代码:
movieViewController:

class movieViewController: UIViewController,UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var mCollection: UICollectionView!
@IBOutlet weak var mTable: UITableView!
var categories = ["Phim Đang Hot", "Phim Lẻ", "Phim Bộ", "Phim Hài", "Phim Kinh Dị"]
@IBOutlet weak var btnMenu: UIBarButtonItem!
override func viewDidLoad() {
    super.viewDidLoad()
    btnMenu.target = self.revealViewController()
    btnMenu.action = Selector("revealToggle:")

    self.view.addGestureRecognizer(self.revealViewController().panGestureRecognizer())
    self.revealViewController().rearViewRevealWidth = 200

    self.mTable.registerClass(CategoryRow.self, forCellReuseIdentifier: "Cell")
    }

func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return categories[section]
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return categories.count
}

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

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! CategoryRow
    return cell
}
}

和CategoryRow.swift:
class CategoryRow : UITableViewCell {
@IBOutlet weak var collectionView: UICollectionView!
}
extension CategoryRow : UICollectionViewDataSource {

func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return 12
}

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCellWithReuseIdentifier("videoCell", forIndexPath: indexPath) as! VideoCell
    return cell
}}
extension CategoryRow : UICollectionViewDelegateFlowLayout {

func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
    let itemsPerRow:CGFloat = 4
    let hardCodedPadding:CGFloat = 5
    let itemWidth = (collectionView.bounds.width / itemsPerRow) - hardCodedPadding
    let itemHeight = collectionView.bounds.height - (2 * hardCodedPadding)
    return CGSize(width: itemWidth, height: itemHeight)
}

这是我的VideoCell:
class VideoCell : UICollectionViewCell {

@IBOutlet weak var imageView: UIImageView!
}

和我的StoryBoard:

ios - 如何使用自定义UITableViewCell制作Hozirontal UITableView-LMLPHP

和我的Sreen:
ios - 如何使用自定义UITableViewCell制作Hozirontal UITableView-LMLPHP

最佳答案

您可以通过将StoryView板中的collectionView的委托和dataSource设置为tableViewCell的单元类来实现。

关于ios - 如何使用自定义UITableViewCell制作Hozirontal UITableView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36298396/

10-09 04:11