如何在swift 3的表格视图中获取特定按钮的选定文本?

时间:2017-11-01 12:13:41

标签: ios swift uitableview

这里我使用单选按钮在列表中选择当我选择一个特定的单选按钮然后我需要传递标签中的相应文本以用于与单选按钮对应的送货方式任何人都可以帮助我如何实现这个?

这是

的图像

enter image description here

这是表格视图中所选按钮的代码

func paymentRadioAction(button : KGRadioButton) {
        _ = button.center
        let centralPoint = button.superview?.convert(button.center, to:self.shippingTableView)
        let indexPath =  self.shippingTableView.indexPathForRow(at: centralPoint!)
        if button.isSelected {

        } else{
            chekIndex = indexPath
            radioSelection = true
            checkIndex = chekIndex
            self.shippingTableView.reloadData()
            self.boolDelegate?.boolvalidation(bool: radioSelection!)
            radioSelection = false
        }
    }

0 个答案:

没有答案