aboutsummaryrefslogtreecommitdiff
path: root/signateprefs/SGNRootListController.m
blob: 1489f36fbb30ad153b3942d22ba7edd573a80339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#import <Preferences/PSListController.h>

@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