嘗試執行stackView
中這兩個按鈕的操作。
// inside cellForRowAt indexPath
cell?.button1.tag = indexPath.row
cell?.button1.addTarget(self, action: #selector(defineTypeAction(_:)), for: .touchUpInside)
各自的行動:
func defineTypeAction (_ sender: UIButton){
let alert=UIAlertController(title: kAppName, message: "Select", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.default, handler: {(action:UIAlertAction) in
sender.setTitle("your title", for: .normal)
// your custom code
}));
present(alert, animated: true, completion: nil)
}
當您點擊按鈕的操作方法將被調用,而不是tableView
委託方法。
完全禁用選擇,並在單元格本身中執行選擇,但僅限於您希望選擇的部分。 –
您可以將這些按鈕放在另一個尺寸較大的視圖上。 – vaibhav
@vaibhav他們已經放在視圖中,看到 – DCDC