I'm trying to add additional functions to my tableview cell with a couple of buttons added to xib and linked via IBActions. I don't seem to be getting the touch events. It looks like the touch for expanding the tree is intercepting before my button. How do add buttons that can respond to touch events?
Found my issue. My xib was did not have the content view for a uitablview cell. I recreated making sure I added a tableviewcell to the xib when creating the xib file.
I'm trying to add additional functions to my tableview cell with a couple of buttons added to xib and linked via IBActions. I don't seem to be getting the touch events. It looks like the touch for expanding the tree is intercepting before my button. How do add buttons that can respond to touch events?