I have a UIView with paging enabled.
I automaticly scroll to the next page:
[myView scrollToNextPage]
Now here I want the code to block until the next page is finished loading. scrollToNextPage calls a delegate method and I want to wait for it to finish before I keep going.
I'm not sure I want to use notifications because I don't want a notification every time the page is turned, just when I turn the page programaticly.
Thanks!