swift:点击按钮上的segue

时间:2017-08-17 15:30:25

标签: ios swift uitableview button uistoryboardsegue

我想使用segue在按钮点击时移动到下一个控制器。我需要在下一个控制器中获得按下按钮的数量。

这是我的控制器的代码:

import UIKit

class ViewController2: UIViewController, UITableViewDelegate, UITableViewDataSource {

    @IBOutlet var tblTable: UITableView!

    var buttonTitles = ["One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten"]


    override func viewDidLoad() {
        super.viewDidLoad()
        tblTable.delegate = self
        tblTable.dataSource = self
    }


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

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

      let buttonTitle: String = buttonTitles[indexPath.row]
      cell.btnButton.setTitle(buttonTitle, for: .normal)
      cell.btnButton.tag = indexPath.row
      cell.btnButton.addTarget(self, action: #selector(self.buttonClick(button:)), for: .touchUpInside)
      cell.selectionStyle = .none
      return cell
   }

   @objc func buttonClick(button: UIButton) -> Void {
    print("btnButton clicked at index - \(button.tag)")
    button.isSelected = !button.isSelected

    if button.isSelected {
        button.backgroundColor = UIColor.green
    } else {
        button.backgroundColor = UIColor.yellow
    }
  }

}


class ButtonCell: UITableViewCell {

    @IBOutlet var btnButton: UIButton!

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        if selected {
            btnButton.backgroundColor = UIColor.green
        } else {
            btnButton.backgroundColor = UIColor.yellow
        }

    }

    override func setHighlighted(_ highlighted: Bool, animated: Bool) {
        super.setHighlighted(highlighted, animated: animated)

        if highlighted {
            btnButton.backgroundColor = UIColor.green
        } else {
            btnButton.backgroundColor = UIColor.yellow
        }
    }
}

如何用我的代码解决问题?

2 个答案:

答案 0 :(得分:1)

非常简单。

按照以下步骤从tableview单元格按钮创建segue(单击)。

  1. 打开故事板布局(视图控制器)
  2. 添加新的(目标)视图控制器。
  3. 选择按钮。
  4. 按&从键盘按住控件ctrl按钮并将鼠标光标从按钮拖动到新的(目标)视图控制器。
  5. 现在将以下代码添加到源视图控制器文件(源代码)
  6. -

    override func performSegue(withIdentifier identifier: String, sender: Any?) {
        print("segue - \(identifier)")
    
        if let destinationViewController = segue.destination as? <YourDestinationViewController> {
            if let button = sender as? UIButton {
                    secondViewController.<buttonIndex> = button.tag
                    // Note: add/define var buttonIndex: Int = 0 in <YourDestinationViewController> and print there in viewDidLoad.
            }
    
          }
      }
    


    enter image description here

    另一种处理相同的方法。

答案 1 :(得分:0)

您需要使用performSegueWithIdentifier("yourSegue", sender: sender)来定位事件。这会将您的segue标识符替换为“yourSegue”。

这将进入用户按下按钮时调用的func。如果您需要向新的View Controller发送按钮点击次数,那么我会做类似的事情:

let secondViewController = segue.destination as! ViewController
secondViewController.buttonClicks = myButtonClicks