[UIKit] UIFont
// 명시적 폰트명 지정
UIFont *font = [UIFont fontWithName:@"폰트이름" size:20];
// 시스템 폰트 사용
UIFont *font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
// 폰트 사이즈
UIFont *font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
// 사이즈 직접 지정
UIFont *font = [UIFont systemFontOfSize:24];
// 이텔릭
UIFont *font = [UIFont italicSystemFontOfSize:[UIFont smallSystemFontSize]];
// 볼드체
UIFont *font = [UIFont boldSystemFontOfSize:[UIFont buttonFontSize]];
// 애플고딕
UIFont *font =
[UIFont fontWithName:@"AppleGothic" size:[UIFont systemFontSize]];
// 쿠이러
UIFont *font = [UIFont fontWithName:@"Courier" size:[UIFont systemFontSize]];
댓글
댓글 쓰기