views:

45

answers:

1

How would I go about adding an opaque logo to the background of a simple scrollview with text on it? I want the logo to stay still while the text scrolls.

+1  A: 

I'd try putting a UIImageView with the logo behind your UIScrollView, and set your UIScrollView's backgroundColor to be transparent. I'd test that out myself, but my MBP is booted into Windows at the moment.

Shaggy Frog
How do I add an image to the UIImageView? Can I do that in builder or xcode?
Rob J
You can use either. But for simplicity you shuld probably use whatever you're using to build your existing view.
Shaggy Frog
I can add the UIImageView in builder but how do I add an actual image?
Rob J
@Rob J, Select your `UIImageView`, Press `Cmd-1`, Select a `Image` ...
ohho