반응형
[ios] System font 가져오기 |
-
8.2 이상부터 사용할 수 있는것으로
[UIFont systemFontOfSize:size weight:UIFontWeightLight];
-
8.2 미만에서는 아래와 같이 처리해주어야 한다.
[UIFont fontWithName:@"HelveticaNeue-Light" size:size];
-
둘 다 수용할만한 코드는 아래와 같이..
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.2) {
return [self systemFontOfSize:size weight:UIFontWeightLight];
} else {
return [self fontWithName:@"HelveticaNeue-Light" size:size];
}
반응형
'프로그래밍 놀이터 > iOS' 카테고리의 다른 글
[ios] UITextView dynamic height change (0) | 2017.12.20 |
---|---|
[ios] Constraint animation 주기 (0) | 2017.12.19 |
[ios] block typedef 방법 & param 기입 방법 (0) | 2017.12.17 |
[ios] extern 변수에 nullability 지정하기 (0) | 2017.12.16 |
[ios] extern const vs. static const in header (0) | 2017.12.15 |
댓글