关于UAAppReviewManager中的默认值问题

时间:2015-10-05 15:11:27

标签: ios uaappreviewmanager

我只是想知道默认值设置在哪里?

UAAppReviewManager.h

/*
 * Get/Set your Apple generated software id.
 * This is the only required setup value. No default.
 */
+ (NSString *)appID;
+ (void)setAppID:(NSString *)appID;

/*
 * Get/Set the App Name to use in the prompt
 * Default value is your localized display name from the info.plist
 */
+ (NSString *)appName;
+ (void)setAppName:(NSString *)appName;

/*
 * Get/Set the title to use on the review prompt.
 * Default value is a localized "Rate <appName>"
 */
+ (NSString *)reviewTitle;
+ (void)setReviewTitle:(NSString *)reviewTitle;

/*
 * Get/Set the message to use on the review prompt.
 * Default value is a localized 
 *  "If you enjoy using <appName>, would you mind taking a moment to rate it? It won't take more than a minute. Thanks for your support!"
 */

上面是UAAppReviewManager.h中的一段代码,它表示默认值是来自info.plist的本地化显示名称,

但我没有找到任何包含那些设置的info.plist(默认值)

那么它在哪里?

1 个答案:

答案 0 :(得分:1)

指的是您的项目信息。enter image description here