无法使用目标c

时间:2016-02-16 11:47:04

标签: ios objective-c nsmutablestring

我正在尝试修改hosts文件。但它给出了错误:

  

sudo:没有tty存在且没有指定askpass程序。

我试过但它不起作用。如果有人知道,请帮助。 谢谢。

NSMutableString* pfConf = [NSMutableString stringWithContentsOfFile: @"/private/etc/pf.conf" encoding: NSUTF8StringEncoding error: nil];
if ([pfConf rangeOfString: @"/private/etc/pf.anchors/org.eyebeam"].location == NSNotFound) {
  [pfConf appendString: @"\n"
   "anchor \"org.eyebeam\"\n"
   "load anchor \"org.eyebeam\" from \"/private/etc/pf.anchors/org.eyebeam\"\n"];
}
[pfConf writeToFile: @"/private/etc/pf.conf" atomically: true encoding: NSUTF8StringEncoding error: nil];

0 个答案:

没有答案