Suppose in your UI design, you need a rectangle of solid color. Of course you could use a UIImageView object and hook it up to an image, but in some cases it might be quicker and easier to just drop in a UIView and set the background color.
My question is with regard to which is cheaper in terms of memory and performance. My gut is that an empty UIView is easier to render than an image, whose file must be loaded and bits stored in memory.
Can anyone speak to this? Many thanks!