This is a very simple question, really:
If I tell my UIScrollView
to set its contentOffset
to something like {0, 50}
, then set it to {0, 100}
a moment later, will its final position be y = 100
, or y = 150
?
I'm trying to get it to focus on certain fields in a table, and it's behaving unexpectedly, but I think if I know the answer to the question or whether the offset is absolute or relative, I can piece the rest together.