eswick / appcenter

Add apps as pages in Control Center
Other
34 stars 8 forks source link

Load preferences from file #22

Closed conath closed 7 years ago

conath commented 7 years ago

might be done like this:

NSMutableDictionary *prefs = [[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.eswick.appcenter.plist"];
eswick commented 7 years ago

Please use:

[[@"~/Library" stringByExpandingTildeInPath] stringByAppendingPathComponent:@"/Preferences/com.eswick.appcenter.plist"]

It's just better practice! The user may not always be named mobile :)