I just compiled it like the way you gave me and it did not give me any rsync: command not found errors but it gave me an error with the ninja.mm file. Yours was like this:
#import "ninja.h"
@implementation ninjaListController
- (id)specifiers {
if(_specifiers == nil) {
_specifiers = [[self loadSpecifiersFromPlistName:@"ninja" target:self] retain];
}
return _specifiers;
}
@end
// vim:ft=objc
- (void)link {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iosgods.com"]];
}
The -(void) part should be added before the @end otherwise the last function will just be left out.
#import "ninja.h"
@implementation ninjaListController
- (id)specifiers {
if(_specifiers == nil) {
_specifiers = [[self loadSpecifiersFromPlistName:@"ninja" target:self] retain];
}
return _specifiers;
}
- (void)link {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iosgods.com"]];
}
@end
// vim:ft=objc
Here's how it appears on my settings: And also, the switch was auto turned on and it might sometimes cause problems so I suggest you make it by default to be 'off'.
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>default</key>
<true/> // Change to false
<key>defaults</key>
<string>com.iosgods.ninja</string>
<key>key</key>
<string>kFreeWeaponUpgrade</string>
<key>label</key>
<string>Weaponupgrade</string>
</dict>
Check your PM. I've resent you the project files. Let me know if you still get the rsync: command not found error.