I'm trying to make a scroll view that will expand as content is added. Take for example your music library, every time a song is added to your library the new content is added and the list expands. How should I go about doing this?
How do I make a dynamic scroll view?
If you make the scroll view slightly taller than the view that holds it, it will do want you want.
Just remember that 'expand' and scroll are not quite the same 😉 - if your content/list (table) grows or shrinks, the scrollview will only display what your code includes (database, plist, array etc.), in a way that the user can scroll thru, so no worries... as a view, it's already 'dynamic'.
See the dev center, guides and samples, for the UIKit Catalog sample app as a reference.
Ken