Views 889 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. [c] 압축 알고리즘 소스 및 정리

  2. [c] 암호화 알고리즘 DES 구현 ㅋㅋ

  3. [c] 암호 알고리즘 소스..

  4. [c] 아파치 모듈(Apache Module) 만들기

  5. [c] 쓰레드에 대한 내용 퍼오기..ㅡㅡ;

  6. [c] 싱글, 더블 링크리스트(linked list)로 만든 예제..

  7. [c] 심심해서.. fseek() 예제..

  8. [c] 신기한 atoi함수(www.game79.net)

  9. [c] 시어핀스키 가스킷..(p.582, A.2 - 두번째)

  10. [c] 시스템공학 레포트 (pass1, pass2)

  11. [c] 시스템 보안 과제.. 시간(amc time) 변경

  12. [c] 시간(요일,날짜 포함) 출력하는 프로그램 초간단 코드

  13. [c] 시간 관련 함수 설명과 예제..

  14. [c] 시간 계산 하는 프로그램 소스코드

  15. [c] 스토리지 클래스(변수)

  16. [c] 스택/힙 오버플로우 테스트(overflow)

Board Pagination Prev 1 ... 50 51 52 53 54 ... 74 Next
/ 74