如何在Objective C中使用Safari打开表单?

时间:2017-10-30 08:37:29

标签: ios objective-c safari

我有一个表单字符串,如"< form> ...< / form>",我想用Safari使用Objective C代码打开它,有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

您只需在HTML正文标记下插入此字符串,然后创建.html文件即可。

阅读HTML文件并加载到网络视图中:

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