0

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

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 包括那些设置(默认值)

那么它在哪里呢?

4

1 回答 1

1

它指的是您的项目信息。在此处输入图像描述

于 2015-10-05T15:41:41.257 回答