반응형
UIWebView에서 사용자 지정 글꼴 사용
UIWebView 안에 사용자 지정 글꼴을 표시하고 싶습니다. 이미 "응용 프로그램에서 제공하는 글꼴"아래의 plist에 글꼴을 넣었습니다. 사용중인 코드 :
UIWebView *webView = [[UIWebView alloc] initWithFrame:myRect];
NSURL *baseURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
[webView loadHTMLString:html baseURL:baseURL];
[self addSubview:webView];
여기서 html은 다음 내용을 포함하는 NSString입니다.
<html><head>
<style type="text/css">
@font-face {
font-family: gotham_symbol;
src: local('GOTHAMboldSymbol_0.tff'), format('truetype')
}
body {
font-family: gotham_symbol;
font-size: 50pt;
}
</style>
</head><body leftmargin="0" topmargin="0">
This is <i>italic</i> and this is <b>bold</b> and this is some unicode: э
</body></html>
iOS 4.2를 사용하고 있으므로 TTF가 지원되어야합니다. 실제로 작동하는 약간의 html / code를 고맙게 생각합니다.
Try and Error 후 로컬 CSS로 사용자 정의 글꼴을로드하는 안정적인 방법을 찾았습니다.
1. 앱에 글꼴 추가 ... 파일이 응용 프로그램에 올바르게 대상인지 확인하십시오.
2. 그런 다음 yourApp-Info.plist에 글꼴을 추가합니다.
3. 실행 NSLog(@"Available fonts: %@", [UIFont familyNames]);
시스템에 대한 글꼴 / 글꼴 패밀리의 이름을 확인하려면 ...
4. 해당 이름을 복사하여 CSS에서 사용하십시오 ... @ font-face는 필요하지 않습니다.
body {
font-family:"Liberation Serif";
}
위에서 내가 뭘 잘못했는지 확실하지 않지만 결국 작동하게했습니다. 다음은 내가 사용하는 HTML입니다 (NSString * htmll). 모든 것을 추가했지만 일부는 솔루션과 관련이 없을 수 있습니다.
<html><head><style type="text/css">
@font-face {
font-family: 'gotham_symbol';
src: url('GOTHAMboldSymbols_0.ttf') format('truetype')
}
@font-face {
font-family: 'gotham_symbol_italic';
src: url('GothamBoldItalic.ttf') format('truetype')
}
#w {display:table;}
#c {display:table-cell; vertical-align:middle;}
i { font-family: 'Helvetica-BoldOblique'; }
</style></head><body topmargin="0" leftmargin="0">
<div style="display: table; width: 320px; height: 50px; #position: relative; overflow: hidden;">
<div style=" #position: absolute; #top: 50%;display: table-cell; vertical-align: middle;">
<div style=" #position: relative; #top: -50%">
<p style="font-size:20px;font-family:'gotham_symbol';color:#97371f;">THE TEXT GOES HERE</p></div></div></div></body></html>
다음과 같이 UIWebView를로드합니다.
UIWebView *webView = [[UIWebView alloc] initWithFrame:rect];
[webView makeTransparent];
NSURL *baseURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
[webView loadHTMLString:html baseURL:baseURL];
참조 URL : https://stackoverflow.com/questions/10490696/using-custom-font-in-a-uiwebview
반응형
'IT박스' 카테고리의 다른 글
JSF에서 CSRF, XSS 및 SQL 주입 공격 방지 (0) | 2021.01.11 |
---|---|
utf-8을 사용하는 php substr () 함수는 끝에 표시를 남깁니다. (0) | 2021.01.11 |
jQuery UI datepicker로 날짜를 선택할 때 트리거 기능 (0) | 2021.01.11 |
메뉴 항목을 어떻게 동적으로 만들 수 있습니까? (0) | 2021.01.11 |
SASS IF 문에서 다중 조건 (AND) 사용 (0) | 2021.01.11 |