From d2cb9115dc80f23bc22f896d11ed8dc1f247aaff Mon Sep 17 00:00:00 2001 From: FivePixels Date: Wed, 19 May 2021 13:24:15 -0500 Subject: Signate initial commit --- signateprefs/SGNRootListController.m | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 signateprefs/SGNRootListController.m (limited to 'signateprefs/SGNRootListController.m') diff --git a/signateprefs/SGNRootListController.m b/signateprefs/SGNRootListController.m new file mode 100644 index 0000000..1489f36 --- /dev/null +++ b/signateprefs/SGNRootListController.m @@ -0,0 +1,27 @@ +#import + +@interface SGNRootListController : PSListController + +@end +@implementation SGNRootListController + +- (NSArray *)specifiers { + if (!_specifiers) { + _specifiers = [self loadSpecifiersFromPlistName:@"Signate" target:self]; + } + + return _specifiers; +} + +-(void)openTwitterDM { + [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://twitter.com/messages/compose?recipient_id=765771568337264641&text=%28Please+describe+your+issue+here%29"] options:@{} completionHandler:nil]; +} +-(void)openTwitter5px { + [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://twitter.com/o5pxels"] options:@{} completionHandler:nil]; +} +-(void)openTwitterRO { + [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://twitter.com/rollerorangedev"] options:@{} completionHandler:nil]; +} + + +@end -- cgit v1.2.3