Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- phpmailer
- JavaScript
- M8200
- crashlog
- GDI
- MFC
- 데이터 전달
- protobuf-c
- Font
- PDA
- 블루투스 헤드셋
- C/C++
- plcrashreporter
- php
- .net
- 자바스크립트
- API
- docker
- 크래시로그
- 기념일관리
- Antialiasing
- 설치제거
- 와이브로
- ClickOnce
- C#
- 한 번만 실행
- self-signed ssl
- EUC-KR
- net
- VS2008
Archives
- Today
- Total
~☆~ 우하하!!~ 개발블로그
문자열 출력 본문
반응형
NSString 클래스의 drawAtPoint 메소드를 사용하여 문자열을 출력할 수 있다.
- (CGSize)drawAtPoint:(CGPoint)point withFont:(UIFont *)font; // Uses UILineBreakModeWordWrap
point 는 문자열을 출력할 좌표값
font 는 문자열을 출력할 때 사용할 폰트
사용예)
- (void)drawRect:(CGRect)rect
{
NSString* strText = @"Test String";
[strText drawAtPoint:CGPointMake(10.0f, 10.0f) withFont:[UIFont systemFontOfSize:20]];
}
결과)
사각영역을 지정하여 정렬된 상태로 문자열 출력
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(UILineBreakMode)lineBreakMode alignment:(UITextAlignment)alignment;
lineBreakMode 는 글자가 잘리는 모드
alignment 는 정렬방법
사용예)
// 출력 영역
CGRect rectBounds = CGRectMake(10.0f, 40.0f, 200.0f, 200.0f);
// 출력영역을 표시하기 위해서...
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 0.5, 1.0, 0.5, 0.8);
CGContextFillRect(context, rectBounds);
NSString* strText2 = @"Test String2";
[strText2 drawInRect:rectBounds
withFont:[UIFont systemFontOfSize:20]
lineBreakMode:UILineBreakModeClip
alignment:UITextAlignmentCenter]; // 가운데 정렬되도록
결과)
- (CGSize)drawAtPoint:(CGPoint)point withFont:(UIFont *)font; // Uses UILineBreakModeWordWrap
point 는 문자열을 출력할 좌표값
font 는 문자열을 출력할 때 사용할 폰트
사용예)
- (void)drawRect:(CGRect)rect
{
NSString* strText = @"Test String";
[strText drawAtPoint:CGPointMake(10.0f, 10.0f) withFont:[UIFont systemFontOfSize:20]];
}
결과)
사각영역을 지정하여 정렬된 상태로 문자열 출력
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(UILineBreakMode)lineBreakMode alignment:(UITextAlignment)alignment;
lineBreakMode 는 글자가 잘리는 모드
alignment 는 정렬방법
사용예)
// 출력 영역
CGRect rectBounds = CGRectMake(10.0f, 40.0f, 200.0f, 200.0f);
// 출력영역을 표시하기 위해서...
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 0.5, 1.0, 0.5, 0.8);
CGContextFillRect(context, rectBounds);
NSString* strText2 = @"Test String2";
[strText2 drawInRect:rectBounds
withFont:[UIFont systemFontOfSize:20]
lineBreakMode:UILineBreakModeClip
alignment:UITextAlignmentCenter]; // 가운데 정렬되도록
결과)
반응형
'iPhone & Cocoa' 카테고리의 다른 글
UIImageView 의 userInteractionEnabled 속성값은... (0) | 2009.05.29 |
---|---|
iPhone 화면 구성 요소의 크기 (0) | 2009.05.12 |
XCode 편집기의 장단점 (0) | 2009.05.12 |
기본적인 iPhone 어플리케이션 구조 생성 방법 (0) | 2009.05.11 |
UIViewController 에 UIView 붙이기 (0) | 2009.05.02 |