Skip to content

Commit

Permalink
Tweak: use UKKit constant instead of string.
Browse files Browse the repository at this point in the history
  • Loading branch information
triplef authored and mk committed Nov 23, 2011
1 parent 797abff commit 810029b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Appirater.m
Expand Up @@ -106,7 +106,7 @@ + (Appirater*)sharedInstance {
static dispatch_once_t appiraterOnceToken;
dispatch_once(&appiraterOnceToken, ^{
appirater = [[Appirater alloc] init];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillResignActive) name:@"UIApplicationWillResignActiveNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillResignActive) name:UIApplicationWillResignActiveNotification object:nil];
});

return appirater;
Expand Down

0 comments on commit 810029b

Please sign in to comment.