用OC写一个字符串写入文件方法
时间: 2023-03-14 16:23:59 浏览: 124
oc字符串方法代码展示
答:要用OC写一个字符串写入文件,可以使用NSString的writeToFile:atomically:encoding:error:方法,例如:NSString *str = @"Hello World"; [str writeToFile:@"/tmp/hello_world.txt" atomically:YES encoding:NSUTF8StringEncoding error:nil];
阅读全文