Re: Improving the User Experience for First Use of Downloadable Software
Re: Improving the User Experience for First Use of Downloadable Software
- Subject: Re: Improving the User Experience for First Use of Downloadable Software
- From: Charles Srstka <email@hidden>
- Date: Fri, 26 Feb 2010 20:28:37 -0600
On Feb 26, 2010, at 3:19 PM, Matthew Lindfield Seager wrote:
> An additional step to avoid annoying these people might be to only
> order your app to the front if it's the first time it has been
> launched...? ($0.02)
Ah, good point. So a better solution would be:
NSUserDefaults *def = [NSUserDefaults standardUserDefaults];
if([def boolForKey:@“MyAppHasAlreadyBeenLaunched”]) {
[NSApp activateIgnoringOtherApps:YES];
}
[def setBool:YES forKey:@“MyAppHasAlreadyBeenLaunched”];
Charles_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden