I'm using the library STPrivilegedTask library, source found at http://www.sveinbjorn.org/STPrivilegedTask to run the NSTask with sudo permissions.
This is the code I'm using to instantiate an STPrivilegedTask object but I'm getting syntax error:
STPrivilegedTask *task2 = [[STPrivilegedTask alloc] initWithLaunchPath: launchPath: arguments];
I'm getting "Receiver type STPrivilegedTask for instance method does not declare a method..." error. Is the above syntax valid?
Thanks,