Skip to content

Instantly share code, notes, and snippets.

@Razzile
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save Razzile/79db8a463ca6612eccda to your computer and use it in GitHub Desktop.

Select an option

Save Razzile/79db8a463ca6612eccda to your computer and use it in GitHub Desktop.
@interface TestBundleListController : PSListController {
}
@end
@implementation TestBundleListController
- (id)specifiers {
if(_specifiers == nil) {
_specifiers = [[self loadSpecifiersFromPlistName:@"MinecraftPrefs" target:self] retain];
}
return _specifiers;
}
-(void)buttonPress:(PSSpecifier *)spec {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://ioscheaters.com"]];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment