Guest User

Untitled

a guest
May 20th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. - (void)applicationDidFinishLaunching:(UIApplication *)application {
  2. [window makeKeyAndVisible];
  3.  
  4. [self loadPropertyList:@"/private/var/mobile/Library/Preferences/com.apple.springboard.plist"];
  5. }
  6.  
  7. -(void)loadPropertyList:(NSString *)path
  8. {
  9. NSData *plistData;
  10. NSString *error;
  11. plistData = [NSPropertyListSerialization dataFromPropertyList:path
  12. format:NSPropertyListBinaryFormat_v1_0
  13. errorDescription:&error];
  14. NSString *textdata = [[NSString alloc] initWithData:plistData encoding:NSASCIIStringEncoding];
  15. NSLog(textdata);
  16. }
Add Comment
Please, Sign In to add comment