Reputation: 8118
My cell has a UITextField
(bound to all the edges) with isUserInteractionEnabled
on false. So I expect that when I click the cell the didSelectRowAt
is called.
Nowm this never happens. It doesn't call the didSelectRowAt
function.
Is there any way to find out who is consuming my event? Also in the view debugger, I don't see any views on top of it.
Upvotes: 0
Views: 127
Reputation: 4739
Upvotes: 1
Reputation: 111
And final, try to use
textfield.isEnable = false instead of textfield.isUserInteractionEnable = false
Upvotes: 1