I'm trying to scrollRect
the UIScrollView
but it is not scrolling.
There's my code:
[scrollGeral setContentSize:CGSizeMake(scrollGeral.contentSize.width, scrollGeral.contentSize.height + 200)];
and here's the scrollRect
code:
[scrollGeral scrollRectToVisible:CGRectMake(scrollGeral.frame.origin.x, scrollGeral.frame.origin.y + [_listaComentarios count] * 200, scrollGeral.frame.size.width, scrollGeral.frame.size.height) animated:NO];