Guest User

Untitled

a guest
Mar 7th, 2021
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include "synRootListController.h"
  2.  
  3. @implementation synRootListController
  4.  
  5. - (NSArray *)specifiers {
  6. if (!_specifiers) {
  7. _specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self];
  8. }
  9.  
  10. return _specifiers;
  11. }
  12.  
  13. -(void)openTwitter {
  14. [[UIApplication sharedApplication]
  15. openURL:[NSURL URLWithString:@"https://twitter.com/@Synth____"]
  16. options:@{}
  17. completionHandler:nil];
  18. }
  19.  
  20. -(void)changeStatusText{
  21.  
  22. }
  23. @end
  24.  
Advertisement
Add Comment
Please, Sign In to add comment