Views 897 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
로컬에 있는 html 파일을 불러오는 방법!!
일단 웹뷰에서 보고자하는 html 파일을 프로젝트에 추가.
아래와 같은 코드로 로컬에 있는 html 파일을 읽어와서 웹뷰에 내용을 출력할 수 있다.
UIWebView *webView = [[UIWebView alloc]
    initWithFrame:CGRectMake(x, y, width, height)];

NSString *htmlFile = [[NSBundle mainBundle]
    pathForResource:@"파일명" ofType:@"html"];

NSData *htmlData = [NSData dataWithContentsOfFile:htmlFile];

[webView loadData:htmlData MIMEType:@"text/html"
    textEncodingName:@"UTF-8" baseURL:[NSURLURLWithString:@""]];

[self.view addSubview:webView];

-----------
팁!
webView에 라운드 주는 방법!
QuartzCore 프레임워크를 임포트하고 라운드 속성을 넣어준다.
#import <QuartzCore/QuartzCore.h>

[[webView layer] setCornerRadius:10];
[webView setClipsToBounds:YES];

[[webView layer]setBorderColor:
[[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor]];
[[webView layer] setBorderWidth:2.75];

[출처] http://bananamilk.tistory.com/197
?

  1. [mac] VirtualBox 실행 스크립트와 bash_profile 설정

  2. [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태

  3. [mac] 패키지 매니저, MacPort

  4. 캘리포니아 운전면허 문제

  5. '2014 모바일 개발 트렌드' 발표자료입니다.

  6. RSVP 란?

  7. [svn] Can't convert string from native encoding to 'UTF-8' 메시지가 나오는 경우

  8. [mac] Homebrew/rvm/cocoapod setting

  9. [ios] Xcode의 디버그 모드에서 콜스택

  10. EBS [수학영역] 미적분과 통계 기본 - 정규분포의 의미와 특징은?

  11. [js] 스크롤 이벤트 막기

  12. [c] FSN 온라인 코딩 테스트 (Sorting, Binary Search)

  13. [ios] Did UIScrollView End Scrolling?

  14. [ios] 로컬에 있는 html 실행하기

  15. [ppt] iOS 플라랩#03(2015.04.27) 발표 자료

  16. [ios] 최상위 ViewController 가져오기

Board Pagination Prev 1 ... 6 7 8 9 10 ... 74 Next
/ 74