2015-10-05 85 views
0

我只是想知道默認值的設置?關於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

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

+1

作爲UAAppReviewManager的作者,我可以說這是正確的答案。 – coneybeare