Advertisement
Guest User

CODE

a guest
Jul 8th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. //
  2. // Config.m
  3. //
  4. // Copyright (c) 2015 Sherdle. All rights reserved.
  5. //
  6. // INFO: From this file you can edit your app's main content.
  7. //
  8.  
  9. #import "Config.h"
  10.  
  11. @implementation Config {
  12.  
  13. }
  14.  
  15. - (NSArray *)config {
  16. NSMutableArray *sections = [NSMutableArray array];
  17.  
  18. //-- Please only edit below this line.
  19.  
  20. [[sections addObject: @[@"Section",
  21. @[@"Videos", @"YOUTUBE", @"UClNZzDwpw3jSjf8bWCMkvrg" ],
  22. @[@"Twitter", @"TWITTER", @"TheMC_OG"],
  23. @[@"Facebook", @"FACEBOOK", @"1450927785128543" ],
  24. @[@"Instagram", @"INSTAGRAM", @"1468344498"]],
  25. @[@"Whiskey Ducks", @"WEB", @[@"http://WhiskeyDucks.us" ]],
  26. @[@"Apparel", @"WEB", @[@"http://GcpMC.Spreadshirt.com" ]],
  27. ]];
  28.  
  29. [sections addObject: @[@"Other Section",
  30. @[@"Tumblr", @"TUMBLR", @"android-backgrounds", @"API"],
  31. @[@"BBC1 Radio", @"RADIO", @"http://www.listenlive.eu/bbcradio1.m3u", @"API"],
  32. @[@"Jokes", @"WEB", @"https://en.wikipedia.org/?title=Joke", @"API"],
  33. @[@"Map", @"MAPS", @[@"-33.84",@"151.21",@"14"], @[@"Event Location", @"This is where the super cool event takes place."]],
  34. ]];
  35.  
  36. //---- Please only edit above this line
  37.  
  38. return [NSArray arrayWithArray:sections];
  39. }
  40. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement