当我使用createFileAtPath
e.g。
[firstname] has a surname of [surname]
and is [gender]
etc etc etc
etc etc etc
etc etc etc
etc etc etc
and lives in [suburb]
当用户点击按钮时,我必须多次创建此文件
这可以通过创建某种模板或常量来完成,我可以用我的变量替换占位符吗?类似于NSString stringWithFormat
的类似于
[NSString stringWithFormat:myTemplate, person.firstname, person.surname, person.gender, person.suburb]
答案 0 :(得分:1)
我会看看NSRegularExpression - replaceMatchesInString:options:range:withTemplate:。您可以匹配NSMutableString中的某些内容并替换它。