I am building a chat. Everything seem to be quite ok but I bumped into sort of \'buggy\' problem.
i got UIViewController with UITextView bar for entering message and
It seems that it is a bug (fighting with this bug took all day for me) Finally this workaround helped:
for (UIView *subview in tableView.subviews)
{
if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewWrapperView"])
{
subview.frame = CGRectMake(0, 0, tableView.bounds.size.width, tableView.bounds.size.height);
}
}