ios - 关于UAAppReviewManager中的默认值问题

标签 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

那么它在哪里呢?

最佳答案

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

关于ios - 关于UAAppReviewManager中的默认值问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32951951/

相关文章:

iOS:geojson iOS 访问

ios - 如何使用分段控件在一个 TableView 中维护两个自定义单元格?

ios - 如何修复 "fatal error: unexpectedly found nil while unwrapping an Optional value " socket 按钮

ios - 升级到 XCode7.2 SKAudioNode 后仅播放 1 秒 - 也许 SKScene 有问题?

ios - React Native - 预期参数类型“RCTViewManagerUIBlock”

ios7 - UAAppReviewManager 速率函数在 iOS 7 上不起作用