I am new to iphone Programming . I have a rectangle on which i display some data. I want to assign an image to its background. And is it possible that the data would be visible even after the image is assigned . Any idea how i can do it ?
Thanks
I am new to iphone Programming . I have a rectangle on which i
Share
You don’t say how you are displaying your data, so it isn’t possible to respond properly.
But in general, you create simple displays using Interface Builder, and can position a
UILabelover aUIImageView, and can set the labels background to be transparent.If you are drawing using
drawRect:, then you probably shouldn’t be. And yes, you can draw text over an image doing it this way, too.