공개 포스팅

UITextView 테두리 둥그렇게 만들기

great-artist 2010. 6. 13. 22:46
#import <QuartzCore/QuartzCore.h>

textView.layer.cornerRadius = 8;
textView.layer.borderWidth = 1;
textView.layer.borderColor = [[UIColor grayColor] CGColor];