如何以编程方式浏览按钮



我在故事板中创建了一个表视图单元格,并为它创建了一个可可触摸类。因为它将有一个按钮,所以在这里我想以编程方式单击按钮导航到另一个视图控制器。

这是我的代码

@IBOutlet弱变量查找按钮:UIButton!

override func awakeFromNib()
{
super.awakeFromNib()
findOutButton.addTarget(self, action: Selector(("action:")), for: UIControlEvents.touchUpInside)
}
func action(sender: UIButton) {

let vc5 = self.storyboard.instantiateViewController(withIdentifier: "DescriptionViewController") as? DescriptionViewController
self.navigationController?.pushViewController(vc5!, animated: true)
}

这里在此行中显示错误

let vc5 = self.storyboard.instantiateViewController(withIdentifier: "DescriptionViewController"( as?描述视图控制器 ` 像"类型为'表视图单元格'的值没有成员'情节提要'。

提前谢谢。帮助我清除错误。

您无法从 UITableCell 访问 self.storyboard。您应该从包含UITableView的主视图控制器导航。为此,您需要使用委托。在您的 UITableCell 类的顶部添加以下内容:-

protocol CustomTableDelegate {
func DelegateButtonPressed()
}
class YourClass : UITableViewCell{
var delegate : CustomTableDelegate? = nil
override func awakeFromNib()
{
super.awakeFromNib()
findOutButton.addTarget(self, action: Selector(("action:")), for: UIControlEvents.touchUpInside)
}
func action(sender: UIButton) {
self.delegate?.DelegateButtonPressed()
}
}

在拥有UITableView的主视图控制器中,在

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

并将委托添加为:-

class YOURVIEWCONTROLLER:UIViewController, CustomTableDelegate{
func DelegateButtonPressed(){
let vc5 = self.storyboard.instantiateViewController(withIdentifier: "DescriptionViewController") as? DescriptionViewController
self.navigationController?.pushViewController(vc5!, animated: true)
}
}

如果您发现使用它有任何困难,请告诉我。

创建完成块,用于获取视图控制器类上的按钮操作

class YourCellClass : UITableViewCell{
var completionBlock : ((_ sender : UIButon)->())?
override func awakeFromNib()
{
super.awakeFromNib()
findOutButton.addTarget(self, action: Selector(("action:")), for: UIControlEvents.touchUpInside)
}
func action(sender: UIButton) {
completionBlock?(sender)
}
}

在视图控制器中执行块

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "YourCellClass", for: indexPath) as! YourCellClass
cell.completionBlock = { (sender) -> Void in
/* Here sender is button refrence so you can modify property of the button also */
let vc5 = self.storyboard.instantiateViewController(withIdentifier: "DescriptionViewController") as? DescriptionViewController  
self.navigationController?.pushViewController(vc5!, animated: true)
}
return cell
}

相关内容

  • 没有找到相关文章

最新更新