Appirater-for-MonoTouch
Appirater-for-MonoTouch copied to clipboard
iPhone Debug and simulator not work?must release at itunes Store?
iPhone Debug and simulator not work?must release at itunes Store?
It works on my machine. Did you set settings.Debug to true when checking?
i follow your step. not appear the alertview?
在 2012-10-22,上午12:10,chebum [email protected] 写道:
It works on my machine. Did you set settings.Debug to true when checking?
— Reply to this email directly or view it on GitHubhttps://github.com/chebum/Appirater-for-MonoTouch/issues/2#issuecomment-9644036.
Hi,
As far as I can see, it appears correctly: http://i.imgur.com/oEJ9l.png Here is my setup code:
AppiraterSettings settings = new AppiraterSettings (123454656);
settings.AppName = (NSString) NSBundle.MainBundle.InfoDictionary.ObjectForKey (new NSString ("CFBundleDisplayName"));
settings.Message = string.Format ("Rate-Message".t (), settings.AppName);
settings.MessageTitle = string.Format ("Rate-Title".t (), settings.AppName);
settings.CancelButton = "Rate-CancelButton".t ();
settings.RateButton = string.Format ("Rate-RateButton".t (), settings.AppName);
settings.RateLaterButton = "Rate-RateLaterButton".t ();
settings.DaysUntilPrompt = 7;
settings.UsesUntiPrompt = 5;
#if DEBUG
settings.Debug = true;
#endif
appirater = new Appirater (settings);
Please try to copy it entirely and see if this solves the problem. If it doesn't, prepare a sample project that reproduces the problem and send it to me. There should be no extra stuff like ORM, 3rd party libraries, etc. Just the code you use to setup appirater and it should show the problem.
Thanks, Ivan
work now
thx£¡ please put the code in readme
2012/10/22 chebum [email protected]
Hi,
As far as I can see, it appears correctly: http://i.imgur.com/oEJ9l.png Here is my setup code:
AppiraterSettings settings = new AppiraterSettings (123454656);settings.AppName = (NSString) NSBundle.MainBundle.InfoDictionary.ObjectForKey (new NSString ("CFBundleDisplayName"));settings.Message = string.Format ("Rate-Message".t (), settings.AppName);settings.MessageTitle = string.Format ("Rate-Title".t (), settings.AppName);settings.CancelButton = "Rate-CancelButton".t ();settings.RateButton = string.Format ("Rate-RateButton".t (), settings.AppName);settings.RateLaterButton = "Rate-RateLaterButton".t ();settings.DaysUntilPrompt = 7;settings.UsesUntiPrompt = 5;#if DEBUGsettings.Debug = true;#endifappirater = new Appirater (settings);
Please try to copy it entirely and see if this solves the problem. If it doesn't, prepare a sample project that reproduces the problem and send it to me. There should be no extra stuff like ORM, 3rd party libraries, etc. Just the code you use to setup appirater and it should show the problem.
Thanks, Ivan
¡ª Reply to this email directly or view it on GitHubhttps://github.com/chebum/Appirater-for-MonoTouch/issues/2#issuecomment-9653265.