- (void)viewDidLoad{
commentTxtView.text = @"Comment";
commentTxtView.textColor = [UIColor lightGrayColor];
}
- (BOOL) textViewShouldBeginEditing:(UITextView *)textView
{
if(commentTxtView.text.length > 0 && commentTxtView.textColor == [UIColor blackColor])
return YES;
commentTxtView.text = @"";
commentTxtView.textColor = [UIColor blackColor];
return YES;
}
-(void) textViewDidChange:(UITextView *)textView
{
if(commentTxtView.text.length == 0){
commentTxtView.textColor = [UIColor lightGrayColor];
commentTxtView.text = @"Comment";
[commentTxtView resignFirstResponder];
}
}
'iOS' 카테고리의 다른 글
UIImageView를 둥글게 제가 사용한 방법 입니다. (0) | 2012.09.13 |
---|---|
#iOS RoundRectedImageView 만들기. (0) | 2012.09.13 |
UIImage crop 및 resize category 추가 (0) | 2012.09.10 |
[iOS] NSDate 를 이용한 파일 이름 생성 (0) | 2012.09.09 |
Iphone- Make a UITextView move up when keyboard is present (0) | 2012.09.04 |