我有一个表单字符串,如"< form> ...< / form>",我想用Safari使用Objective C代码打开它,有没有办法做到这一点?
答案 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]];