I have added a footer to the UITableView in plain style if the user clicks the textfield of last cell the tableview is not scrolling
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection: (NSInteger)section{
UIView *view =[[UIView alloc] initWithFrame:CGRectMake(0, 0, 500, 500)];
[view setBackgroundColor:[UIColor blackColor]];
return view;
}
if it is a sectioned table this works, please help
and put your TableView with previous frame then use bellow method
i hope this help you…