iphone - How to prevent UITableView interaction while UITextField is FirstResponder -
is there simple way prevent user interaction while entering text in uitextfield (the textfield in cell of tableview)?
i've tried this:
- (void)textfielddidbeginediting:(uitextfield *)textfield { self.tableview.userinteractionenabled = no; } with result keyboard stops showing up...
the first thought comes mind adding transparent uiview overlay "mask" surrounding cell, intercepting touch events. suppose have 2 overlays - 1 above cell , 1 below.
Comments
Post a Comment