Iphone sdk - 生成本地 HTML

发布于 2024-12-28 16:07:40 字数 105 浏览 0 评论 0原文

我需要你的帮助。我怎样才能在SDK上实现它?

1)接收用户的输入(TextField) 2)生成或写入一个html本地文件,其中包含从Textfield接收的文本(Html本地)

I need your help. How can I make it on SDK?

1) receive input from the user (TextField)
2) generate or write it to a html local file with text received of Textfield ( Html local )

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳公公是暖光 2025-01-04 16:07:40

试试这个(假设 textField 是一个有效的 UITextField 实例,其中输入了用户的输入):

NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *filePath = [docPath stringByAppendingPathComponent:@"user.html"];
[textField.text writeToFile:filePath atomically:YES];

Try this (assuming textField is a valid UITextField instance, with the user's input typed inside):

NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *filePath = [docPath stringByAppendingPathComponent:@"user.html"];
[textField.text writeToFile:filePath atomically:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文