Search results

  1. lists.apple.com/archives/cocoa-dev/2011/​Mar/msg00028.html   Cached
    Subject: Re: UIView animation (backgroundColor) + drawRect ... > > but no matter what the duration set, the background color ... Fading the background color might not ...
  2. www.cocoabuilder.com/archive/cocoa/​299407-uiview...   Cached
    but no matter what the duration set, the background color was changing instantly. ... I realized that my UIView subclass has its own drawRect: method ...
  3. developer.apple.com/.../UIView_Class/​UIView/UIView.html   Cached
    The UIView class defines a rectangular area on the ... its rectangular area with a background color. ... your view is set to YES, your drawRect: ...
  4. discussions.apple.com/thread/1505581   Cached
    It works fine until I set a ... [UIView alloc ... I don't know the source of your problem but maybe you could draw the background color yourself. - (void) drawRect ...
  5. lists.apple.com/archives/cocoa-dev/2011/​Mar/msg00033.html   Cached
    Subject: Re: UIView animation (backgroundColor) + drawRect ... duration set, the background color was ... drawRect:, the background color of your view is ...
  6. forums.macrumors.com/​showthread.php?t=564316   Cached
    Programming > iPhone/iPad Programming ... I am trying to set the background color of a UIView to a custom color, without much ... OK, the value you're entering should ...
  7. www.java2s.com/.../iPhone-iPad-UI/​UIView/Color.htm
    I'd like to "pulse" the stroke color on a path that I've drawn in a UIView's drawRect. But not sure this is ... How i set the background color in UIView using ...
  8. iphonedevelopment.blogspot.com/2008/​...uiviews-rounded.html   Cached
    This is true even if you do not call drawRect on super. ... // Ignore any attempt to set background color ... UIView *background = [[UIView alloc ...
  9. forums.macrumors.com/​showthread.php?t=564316   Cached
    Programming > iPhone/iPad Programming ... I am trying to set the background color of a UIView to a custom color, without much ... OK, the value you're entering should ...
  10. stackoverflow.com/.../set-uiview-​backgroundcolor...drawrect   Cached
    I am trying to set a custom UIView class's background color. The class also does quartz drawing in the drawRect:method. Since background color change does not take ...
  11. stackoverflow.com/questions/2276940/​uiview-background-color   Cached
    Very Simple Custom UIView, drawRect not getting called. 1. ... Setting background color of UIView subclass doesn't work. 3. How to add a popup UIView ...
  12. stackoverflow.com/​...backgroundcolor...uiview-in-​objective-c   Cached
    The init function sets the background color to purple and then the drawRect sets ... Is -drawRect not pretty similar to a ... setting self of UIView background color. 1.
  13. stackoverflow.com/questions/...uiview-​background-color-ios-5   Cached
    I'm assuming that means you've implemented -drawRect:. IIRC, by default (if UIView.clearsContextBeforeDrawing is set), ... Set background color for UIView. 0.
  14. stackoverflow.com/.../​setting...background-color-of-a-uiview   Cached
    I have an NSObject with a UIView property. Mostly I use this UIView for displaying a picture, but in some cases, I want to set the background color of it.