首页 > 移动平台 > 详细

IOS..读取本地HTML文档

时间:2014-08-20 19:17:52      阅读:307      评论:0      收藏:0      [点我收藏+]
#import  <UIKit/UIKit.h>

 #import  “LoadLocalHtmlViewController.h”



@interfaceLoadLocalHtmlViewController : UIViewController {

    IBOutlet UIWebView*myWebView;

}

@property(nonatomic,retain) UIWebView *myWebView;       

-(IBAction)LoadLocalHtmlFile:(id)sender;

@end

 

 #import  “LoadLocalHtmlViewController.m“

 

@synthesizemyWebView;

-(IBAction)LoadLocalHtmlFile:(id)sender{ 

    //取得欲读取档案的位置与文件名

    NSString *resourcePath = [[NSBundle mainBundle] resourcePath];

    NSString *filePath =[resourcePath stringByAppendingPathComponent:@"readme.html"];



    //encoding:NSUTF8StringEncoding error:nil 这一段一定要加,不然中文字会乱码

    NSString*htmlstring=[[NSString alloc] initWithContentsOfFile:filePath  encoding:NSUTF8StringEncodingerror:nil];  

    [myWebViewloadHTMLString:htmlstring baseURL:[NSURL fileURLWithPath:[ [NSBundle mainBundle] bundlePath]]];

}

-(void)dealloc {

    [myWebView release];

    [super dealloc];

}
readme.html中添加:

<SCRIPTLANGUAGE="JavaScript">

<!--

document.onload= function(){

        document.ontouchmove = function(e){ e.preventDefault(); //-->

</SCRIPT>

 

IOS..读取本地HTML文档,布布扣,bubuko.com

IOS..读取本地HTML文档

原文:http://www.cnblogs.com/iflewless/p/3925183.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!