I want to try to get the following example working. The goal is to have a picture be a sub-view of a scroll view. Why doesn't the following example work?
import ui
import Image
sv = ui.ScrollView()
sv.background_color = 'gray'
im = Image.open('Test_Boat')
iv = ui.ImageView()
iv.image = im
sv.add_subview(iv)
sv.present()