Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #import "BMSetup.h"
- @implementation BMSetup {
- // NSUserDefaults* uD;
- }
- - (void)initDefaults {
- NSLog(@"Beginning Setups");
- NSUserDefaults *uD = [NSUserDefaults standardUserDefaults];
- if (![uD objectForKey:@"Call Alert"]) {
- [uD setObject:@"On" forKey:@"Call Alert"];
- [uD synchronize];
- NSLog(@"Setup Call Alert");
- }
- NSLog(@"Setups Done");
- }
- @end
Advertisement
Add Comment
Please, Sign In to add comment