UITextView 사용방법입니다.
몇가지 안되지만, 유용하게 사용하였습니다.
...
중략
...
UITextView *localTextView =
[[UITextView alloc] initWithFrame:CGRectMake(0, 0, 230, 60)];
localTextView.opaque = NO;
localTextView.backgroundColor = [UIColor clearColor];
localTextView.font = [UIFont fontWithName:@"Helvetica" size:14];
localTextView.userInteractionEnabled = NO;
self.textView = localTextView;
[localTextView release];
textView.text = @"Cras sit amet purus vitae libero venenatis luctus sit amet non urna. Curabitur volutpat adipis cing nulla, in lacinia eros pulvinar vitae.";
[self addSubview:textView];
'□컴퓨터 관련 > ★iPhone Developer' 카테고리의 다른 글
iOS5 Tech Talk World In Seoul (0) | 2011.12.11 |
---|---|
[아이폰 개발]Swipe 기능 (0) | 2011.08.26 |
한글완성형(EUC-KR)을 iPhone/Mac에서 사용할 수 있는 언어셋으로 변환하기 (2) | 2011.01.31 |
Google AdMob (0) | 2011.01.21 |
IPHONE 에서 국가 설정 값 및 언어 설정 값 가져 오는 법. (0) | 2011.01.21 |
iPhone 어플리케이션을 앱스토어에 배포하는 과정 (0) | 2011.01.17 |
자주 쓰는 NSString Method (0) | 2010.12.20 |