Hello guys,
I have two pages:
page1: create account
page2: see account
startup (basically like this):
if (account) {
page2
} else {
page1
}
Now, when account = true, I use this:
Code:
[scrollView scrollRectToVisible:frame animated:NO];
That is working, but the problem is, that when you tap the UIScrollView, it scrolls back to page 1! When I scroll back to page 2 after that, it doesn't do that anymore...
Anyone know a solution to this? Is it inside the scrollRectToVisible??
I commented out a LOT of different parts of code, nothing changed it, believe me, I tried almost everything...
What am I missing...??
Thanks