Re: UIView as opposed to UIViewController...

2010-03-07 Thread David Duncan
You've misread. The performance note is that if your view does not need to draw, then you should not implement -drawRect:. A view with an empty -drawRect: method consumes more memory and requires more processing time to display than the same view that does not implement - drawRect: at all.

Re: UIView as opposed to UIViewController...

2010-03-07 Thread Matt Neuburg
On Sat, 06 Mar 2010 19:57:32 -0700, Jon said: >I get indications from reading that you shouldn't really subclass UIView in general or to do routine things, and that any time you implement drawRect in the subclass of a UIView, you are taking a performance hit compared to doing some drawing in ot

Re: UIView as opposed to UIViewController...

2010-03-07 Thread Alexander Spohr
Am 07.03.2010 um 03:57 schrieb Jon: > I get indications from reading that you shouldn't really subclass UIView in > general or to do routine things, and that any time you implement drawRect in > the subclass of a UIView, you are taking a performance hit compared to > doing some drawing in o

UIView as opposed to UIViewController...

2010-03-06 Thread Jon
I get indications from reading that you shouldn't really subclass UIView in general or to do routine things, and that any time you implement drawRect in the subclass of a UIView, you are taking a performance hit compared to doing some drawing in other ways? is this true, in the case of doin