iOS 앱에서 커스텀 폰트를 적용하는 방법과 커스텀 폰트가 보이지 않을 때(적용이 안될 때) 해결 방법에 대해 간단히 설명한다.
1. 폰트 등록
프로젝트의 info.plist 의 "Fonts provided by application" 속성에 해당 폰트를 추가한다.
2. 코드
[nivel.titleLabel setFont: [UIFont fontWithName:@"Geometry Soft Pro" size:42]];
3. 폰트가 적용되지 않을 때
프로젝트 설정의 Build phases 에서 "Copy bundle resources" 부분에 해당 폰트가 추가되어 있는지 확인 한다.
[출처] http://stackoverflow.com/questions/15995447/custom-font-ios-doesnt-showing