When do you use drawinrect for a string or image versus directly setting the value? For example, I can have a uilabel and use its text for string or I can use [somestring drawInRect:somerect]. Similarly, I can use [someimage drawInRect:rect] or someview.backgroundImage where available.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I would say using drawInRect method is "rare", this method is used for developping games or displaying maps with tons of texts for instance. The thing is if you are displaying something simple like a form with textfield, uiswitch, etc... (if you don't do complex drawing) you should use UILabel. Explain your project, we'll be able to help you in a better way than the things I said. Remember : UILabel is meant to display strings ;) |
|||
|