我尝试在 iPhone 应用程序中使用 fwrite(C 函数)。
出于自定义原因,我不想使用writeToFile而是使用fwrite C 函数。
我在didFinishLaunchingWithOptions函数中编写了这段代码:
FILE *p = NULL;
NSString *file= [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Hello.txt"];
char buffer[80] = "Hello World";
p = fopen([file UTF8string], "w");
if (p!=NULL) {
fwrite(buffer, strlen(buffer), 1, p);
fclose(p);
}
但是我在 fwrite 函数中收到错误EXC_BAD_ACCESS 。
有什么帮助吗?