일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- HTTP
- In-app Billing
- Google Cloud Messasing
- Activity 수명 주기
- Android O
- AccountManager
- xcode
- Push
- 다른 앱에서 열기
- unreal
- 배포
- service
- gradle
- Unchecked Exception
- NSURLConnection
- ios9
- 페이스북
- 카카오톡
- android studio
- ios
- signing
- Android O Preview
- Android
- 안드로이드 개발 레벨업 교과서
- 트위터
- Google Cloud Messasging
- 데이터 공유
- GCM
- contentprovider
- BLOCK
- Today
- Total
노블의 개발이야기
[iOS] UIWebView 웹페이지 너비 맞추기 본문
UIWebView의 사이즈를 변경 후 google 로그인 페이지를 로딩하면 WebView 사이즈에 맞지 않는다.
- WebView 속성
self.webView.scalesPageToFit = YES;
- UIWebView의 delegate 메소드에 추가
- (void)webViewDidFinishLoad:(UIWebView *)webViwe
[방법 1]
NSString *javaScript = [NSString stringWithFormat:
@"var meta = document.createElement('meta'); "
"meta.setAttribute( 'name', 'viewport' ); "
"meta.setAttribute( 'content', 'width = %d' ); "
"document.getElementsByTagName('head')[0].appendChild(meta)",
(int)webView.frame.size.width];
[webView stringByEvaluatingJavaScriptFromString:javaScript];
[방법 2]
NSString *javaScript = [NSString stringWithFormat:@"document.querySelector('meta[name=viewport]').setAttribute('content', 'width=%d;', false);", (int)webView.frame.size.width];
[webView stringByEvaluatingJavaScriptFromString:javaScript];
[방법 3]
if (webView.frame.size.width < webView.scrollView.contentSize.width) {
// width=device-width results in a wrong viewport dimension for webpages displayed in a popover
NSString *javaScript = @"var viewport = document.querySelector('meta[name=viewport]');";
javaScript = [javaScript stringByAppendingFormat:@"viewport.setAttribute('content', 'width=%d, initial-scale=1.0, user-scalable=1');", (int)webView.frame.size.width];
[webView stringByEvaluatingJavaScriptFromString:javaScript];
}
[참고]
http://egeek.me/2012/11/01/ios-scaling-web-content-in-uiwebview
'iOS' 카테고리의 다른 글
[iOS] UIActivityViewController (0) | 2015.07.13 |
---|---|
[iOS] UIActionSheet (0) | 2015.07.13 |
[iOS] XML Parser (0) | 2015.05.06 |
[iOS] GCD(Grand Central Dispatch) 사용하기 (0) | 2015.04.23 |
[IOS] ARC - Toll-Free Bridging (348) | 2015.04.23 |