Re: modifying info dictionary
Re: modifying info dictionary
- Subject: Re: modifying info dictionary
- From: "Julio Cesar Silva dos Santos" <email@hidden>
- Date: Fri, 17 Aug 2007 13:41:11 -0300
If your user does not have the sufficient privileges to modify files on
/Application, your app will not work as expected. You may consider saving
this information on ~/Application Support/Your App.
--
Julio Cesar Silva dos Santos
Skype: jcssantos01
email@hidden
2007/8/17, Oscar Bascara <email@hidden>:
>
> I'd like to modify the info dictionary so that the About dialog will
> indicate the number of days remaining in a trial version.
> Specifically, I'd like to tack on that extra information at the end of
> NSHumanReadableCopyright:
>
> NSDictionary *dict = [[NSBundle mainBundle] infoDictionary];
> NSString *hrc = [dict objectForKey:@"NSHumanReadableCopyright"];
> hrc = [NSString stringWithFormat:@"%@ (extra information here)",
> hrc];
> [dict setValue:hrc forKey:@"NSHumanReadableCopyright"];
>
> Is this an acceptable modification? Are there any side effects that I
> should know about?
>
> Thanks,
> Oscar
_______________________________________________
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