One Quickie


Put a border around a UITextView (UIView->General)
(or around any UIView for that matter)
#import <QuartzCore/QuartzCore.h>  // For layer styles

...

textview.layer.borderWidth = 1.0f;
textview.layer.borderColor = [UIColor blackColor].CGColor;



borkware home | products | miniblog | rants | quickies | cocoaheads
Advanced Mac OS X Programming book

webmonster@borkware.com