web-dev-qa-db-ja.com

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: &#1101;
</body></html>

私はiOS 4.2を使用しているため、TTFをサポートする必要があります。実際に動作するHTML /コードを少しいただければ幸いです。

53
Joris Weimar

試行錯誤を繰り返した後、ローカルCSSでカスタムフォントを読み込む信頼できる方法を見つけました。

1.フォントをアプリに追加します...ファイルがアプリケーションに適切にターゲティングされていることを確認します

enter image description hereenter image description here

2.次に、フォントをyourApp-Info.plistに追加します

enter image description here

3. NSLog(@"Available fonts: %@", [UIFont familyNames]);を実行して、システムのフォント/フォントファミリーの名前を確認します...

enter image description here

4.その名前をコピーしてCSSで使用します... @ font-faceは不要です

body {
    font-family:"Liberation Serif";
}
100
Lindemann

上記で何を間違えたかはわかりませんが、私はそれを機能させました。ここに私が使用する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];
14
Joris Weimar