我有一个tableview单元格,我在其中添加了collectionview单元格(用于水平滚动)。
现在我想在水平采集视图的任何单元格的按钮上推送到其他导航控制器。怎么做 ? 0
代码:
ViewController.swift:
class ViewController: UIViewController {
var categories = ["Action", "Drama", "Science Fiction", "Kids", "Horror"]
}
extension ViewController : UITableViewDelegate { }
extension ViewController : UITableViewDataSource {
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return categories[section]
}
func numberOfSections(in tableView: UITableView) -> Int {
return categories.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "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, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "videoCell", for: indexPath) as! VideoCell
cell.button.addTarget(self, action:#selector(ViewController.goToLookAtPage(_:)), for: .touchUpInside)
return cell
}
}
extension CategoryRow : UICollectionViewDelegateFlowLayout {
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> 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)
}
}
我在哪里声明goToLookAtPage函数?
VideoCell.swift
class VideoCell : UICollectionViewCell {
@IBOutlet weak var button: UIButton!
}
答案 0 :(得分:2)
你需要声明它
on CategoryRow
Class也声明了全局闭包
像
var buttonTapped:((CategoryRow?) -> Void)? = nil
现在我们有closure
来致电
实施goToLookAtPage
,如下所示
func goToLookAtPage(_ sender:UIButton) {
if let btnAction = self.buttonTapped {
btnAction(self)
}
}
现在,您在ViewController
cellForRowAtIndexPath
cell.buttonTapped = {(cell) -> Void in
//You Got your response , do push in main Thread
}
希望对你有所帮助
答案 1 :(得分:0)
在你的按钮处理程序功能中,获取按钮的位置,发送者就是你的按钮。
let position = sender.convert(CGPoint.zero, to: self.collectionView)
获取给定位置的索引路径。
let indexPath = self.collectionView?.indexPathForItem(at: position)
使用索引路径从数据源获取模型。
let model = self.data[indexPath.row]
现在您已拥有数据模型,将其传递到目的地并推送视图控制器或其他任何内容。