Once your label is "FULL" of text, you need to measure how wide and high it is.
Then you need to call
Code:
[theScrollView setContentSize:CGSizeMake(w, h)];
This will let the scrollview know the size of it's content so it knows how to behave when scrolling. Just adjust the W and H as needed.