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

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -