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입니다. This is italic and this is bold and..