-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppController.m
46 lines (34 loc) · 939 Bytes
/
AppController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// AppController.m
// Mogeva
//
// Created by Peter Appel on 26/05/2009.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "AppController.h"
#import "PreferenceController.h"
@implementation AppController
+ (void)initialize {
// Create a dictionary
NSMutableDictionary *defaultValues = [NSMutableDictionary dictionary];
// Put defaults in the dictionary
[defaultValues setObject:[NSNumber numberWithBool:YES]
forKey:MOGUnitsKey];
// Register the dictionary of defaults
[[NSUserDefaults standardUserDefaults] registerDefaults:defaultValues];
NSLog(@"registered defaults: %@", defaultValues);
}
- (IBAction)showPreferencePanel:(id)sender
{
// Is preferenceController nil?
if (!preferenceController) {
preferenceController = [[PreferenceController alloc] init];
}
[preferenceController showWindow:self];
}
- (void)dealloc
{
[preferenceController release];
[super dealloc];
}
@end