gpt4 book ai didi

objective-c - 如何在 UIWebview 中保存本地加载的 HTML 文件

转载 作者:搜寻专家 更新时间:2023-10-30 20:25:21 25 4
gpt4 key购买 nike

我正在使用 UIWebView 编写富文本编辑器。为此,我使用了一个模板文件作为启动器。

然后当用户完成编辑但尚未发布时,我想将当前内容保存到备份 html 文件中以防应用程序损坏。

我该怎么做?

最佳答案

给你...伙计

    NSFileHandle *file;
NSMutableData *data;

const char *bytestring = "black dog";//In your case html string here

data = [NSMutableData dataWithBytes:bytestring length:strlen(bytestring)];
NSString *path = //Path to your html file
if ([filemgr fileExistsAtPath:path] == YES){
NSLog (@"File exists");
file = [NSFileHandle fileHandleForUpdatingAtPath:path];

if (file == nil)
NSLog(@"Failed to open file");

[file writeData: data];

[file closeFile];
}
else
NSLog (@"File not found");

下面的完整教程

Working With File I/O in objective-c

关于objective-c - 如何在 UIWebview 中保存本地加载的 HTML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16535104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com