开发者

Edit a boolean value on click on a button at customised table view cell

开发者 https://www.devze.com 2023-01-19 09:11 出处:网络
i have a table view with customized cell. each cell contains a button that is added a contentView addSubview. Now I want to update a Boolean value in database tableregarding to row of which button is开

i have a table view with customized cell. each cell contains a button that is added a contentView addSubview. Now I want to update a Boolean value in database table regarding to row of which button is开发者_如何学运维 clicked.

How should I get the index of the row whose button is clicked as when you click on the button it does not select the row on which the button exist .


Maybe you could set the tag of the UIButton as the row of your tableView ?

[ cell setTag:<#(NSInteger)#> ];

Then when a tap occured, you get the tag (from the sender you cast to a UIButton*), transform it in NSInteger and can change the bool in your database ^^

If you have more than One section, you could trick like doing tag = section * 100 + row.

Good Luck !

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号