I\'m trying to disable scrolling in a UITableView when editing a UITextField embedded in a UITableViewCell. This is just to prevent th
UITableView
UITextField
UITableViewCell
if you want to scroll only if its content is not visible then set:
yourTableview.alwaysBounceVertical = NO;
Here if your content is visible then your tableview will not scroll