iPhone 项目中加载本地html文件到uiwebview的代码
2010-05-29 05:41:00 来源:WEB开发网核心提示:如果您想在iPhone项目中加载Documents里面的文件,可以尝试CocoaChina版主“lvyile”提供的代码- (void)loadDocument:(NSString*)docName { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDoc
如果您想在iPhone项目中加载Documents里面的文件,可以尝试CocoaChina版主“lvyile”提供的代码- (void)loadDocument:(NSString*)docName { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSString *path = [documentsDirectory stringByAppendingPathComponent:docName]; NSURL *url = [NSURL fileURLWithPath:path]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; self.myWebView.scalesPageToFit = YES; [self.myWebView loadRequest:request];}如果加载App内部的文件,需要改一下代码NSString *mainBundleDirectory = [[NSBundle mainBundle] bundlePath];NSString *path = [mainBundleDirectory stringByAppendingPathComponent:docName];
[]
- ››iPhone应用帮助残障儿童看图说话
- ››iPhone实用工具AppBox Pro使用教程大揭秘
- ››iphone4省电方法
- ››iphone 获取地址的详细信息
- ››iPhone 库的基本内存管理策略
- ››iPhone加密文字亲手做 私密信息有保障
- ››iphone 根据经纬度坐标取详细地址(包括国,省,市...
- ››iphone/ipad ios cocoa object-c 近期苹果UI部分小...
- ››iphone中如何进行多线程编程
- ››iPhone OS SDK的这些事[安装、下载、版本、实例、...
- ››iPhone ObjectC的NSAutoreleasePool
- ››iPhone 判断设备是在Portrait(纵向)还是(Landscap...
更多精彩
赞助商链接