ios - 如何在 iOS 设备离线时加载本地 HTML 文件?

标签 ios objective-c html uiwebview

我想让我的 UIWebView 在设备离线时打开本地 HTML5 文件,并在设备在线时打开网站。

我会留下一份我的文件的副本。

AppDelegate.h

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;


@end

AppDelegate.m

#import "AppDelegate.h"
#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>


@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    sleep(9.5);

    NSError *setCategoryErr = nil;
    NSError *activationErr  = nil;
    [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:&setCategoryErr];
    [[AVAudioSession sharedInstance] setActive:YES error:&activationErr];

    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@property (strong, nonatomic) IBOutlet UIWebView *webView;

@end

ViewController.m

#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>


@interface ViewController ()

@end


@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Load the url into the webview
    NSURL *url = [NSURL URLWithString:@"http://app.relaxemy.com"];
    [self.webView loadRequest:[NSURLRequest requestWithURL:url]];
}





- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

最佳答案

您需要创建您的 html 文件并将其保存在本地,然后按如下所述加载它。

我没有将其标记为重复,因为这是关于离线方法的。然而,答案取自this thread。 :

objective-C

NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
[webView loadHTMLString:htmlString baseURL: [[NSBundle mainBundle] bundleURL]];

swift

let htmlFile = NSBundle.mainBundle().pathForResource("fileName", ofType: "html")
let html = try? String(contentsOfFile: htmlFile!, encoding: NSUTF8StringEncoding)
webView.loadHTMLString(html!, baseURL:nil)

swift 4.x

let htmlFile = Bundle.main.path(forResource: "fileName", ofType: "html")
let html = try? String(contentsOfFile: htmlFile!, encoding: String.Encoding.utf8)
webView.loadHTMLString(html!, baseURL:nil)

关于ios - 如何在 iOS 设备离线时加载本地 HTML 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41865430/

相关文章:

ios - 使用或不使用全局变量访问 UITabBarController 内的函数/变量?

iphone - 我的第一个 iPhone 应用程序测试

ios - 使用 OCMockito 测试 Storyboard的最佳方式

javascript - 使用 html css & js 使用分区的汉堡包下拉菜单

ios - numberOfSectionsInTableView 方法的问题

objective-c - Xcode for How to call function from one class to another class function in iPhone Apps

objective-c - GCRectMake 的 iOS 错误 - 将 'int' 发送到不兼容类型 'CGRect' 的参数(又名 'struct CGRect')

ios - 与 View 高度成比例的底部空间限制

html - 向空的 div 添加背景 - 指定不可能的高度

javascript - 为什么即使 div 没有高度,transition with translate 也会占用空间?