본문 바로가기

about DEV

iPhone SDK - Loading Local file in to UIWebView

선언 부분

NSString *imageName = [[NSBundle mainBundle] pathForResource:@"bkimgb" ofType:@"png"];
NSURL *imageURL = [NSURL fileURLWithPath: imageName];
NSString *url = [[NSString alloc]initWithFormat:@"%@",imageURL];


사용 부분

ht = [ht stringByAppendingString:[NSString stringWithFormat:@"<table><tr><td><img src=%@></td></tr></table></div></td>", url]];