斯威夫特3通过按钮/手势识别器动作到其他功能使用选择器

我有一个问题与斯威夫特3行动选择器 - 或者,我可以说,与手势识别器。斯威夫特3通过按钮/手势识别器动作到其他功能使用选择器

假设我在一个表格视图中,我通过表格单元格获得动态数据。我在表格视图中有一个按钮或手势识别器,我想将该按钮或手势的数据发送到不同的功能。

回答:

请尝试下面的功能,希望它能为你工作!

func whereYouWant(){ 

let button = UIButton()

button.accessibilityElements = [data1,data2]//Here you can pass any thing in this array.

button.addTarget(self, action: #selector(testFunction), for: .touchUpInside)

}

//Here you can call this function through selector....

func testFunction(myButton:UIButton){

let firstData = myButton.accessibilityElements?[0] as? //Here you can do type cast According to you

let secondData = myButton.accessibilityElements?[1] as? //Here you can do type Cast According to you.

}

以上是 斯威夫特3通过按钮/手势识别器动作到其他功能使用选择器 的全部内容, 来源链接: utcz.com/qa/260972.html

回到顶部