最近更新:2018.12.28,添加相關(guān)Swift代碼
前言
從iOS 10.3開始浩习,用戶可以在APP內(nèi)直接進(jìn)行評(píng)分或評(píng)論静暂,不需要再跳轉(zhuǎn)到AppStore了。之前的流程是:用戶點(diǎn)擊評(píng)論按鈕打開評(píng)論頁面(或某個(gè)時(shí)刻自動(dòng)彈出)->點(diǎn)擊評(píng)論->跳轉(zhuǎn)到AppStore->進(jìn)行評(píng)論谱秽。蘋果這一設(shè)計(jì)簡(jiǎn)化了評(píng)論流程洽蛀,用戶體驗(yàn)更好了一些摹迷。
實(shí)現(xiàn)
對(duì)于我們開發(fā)者來說,我們?cè)趺磳?shí)現(xiàn)這一功能呢郊供?
蘋果在最新的iOS 10.3的SDK中的StoreKit框架中新增了一個(gè)類SKStoreReviewController來專門做這件事情峡碉,它只有一個(gè)類方法requestReview。下面直接上代碼颂碘。
- OC
引入框架
#import <StoreKit/StoreKit.h>
調(diào)用requestReview方法
- (void)showReviewAlert {
[SKStoreReviewController requestReview];
}
- Swift 4.2
引入框架
import StoreKit
調(diào)用requestReview方法
SKStoreReviewController.requestReview()
運(yùn)行之后的頁面
至此就實(shí)現(xiàn)在App內(nèi)直接評(píng)論了。
開發(fā)階段椅挣,這個(gè)頁面上的“提交”按鈕是灰色的头岔,不能點(diǎn)擊的。在app上線之后鼠证,這個(gè)按鈕就可以點(diǎn)擊了峡竣,如下圖:
選擇星級(jí)之后,點(diǎn)擊“提交”量九,評(píng)價(jià)就提交成功了适掰,并彈出下面窗口。你可以選擇寫評(píng)論或點(diǎn)OK關(guān)閉窗口荠列。如圖:
如果是通過點(diǎn)擊按鈕彈出的評(píng)價(jià)頁面类浪,在評(píng)價(jià)成功之后,再次點(diǎn)擊這個(gè)按鈕就沒有反應(yīng)了肌似。
還可以在你的app鏈接地址后面加上“action=write-review”來直接打開評(píng)論頁面费就,代碼如下:
- OC
NSString *str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@?action=write-review", appID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
- Swift 4.2
let str = "itms-apps://itunes.apple.com/app/id\(appID)?action=write-review"
UIApplication.shared.open(URL(string: str)!, options: [:], completionHandler: nil)
運(yùn)行之后的效果如下:
提示:iOS 10.3之后蘋果不建議用戶通過點(diǎn)擊按鈕或其它方式來打開評(píng)論頁面,我們需要做的就是確定在什么時(shí)候和什么位置加入彈出評(píng)論頁的代碼川队,剩下的事情就是iOS系統(tǒng)要做的了力细,評(píng)論頁是否彈出是由蘋果決定的,每年不超過3次固额,跟App的版本無關(guān)眠蚂。
這是蘋果對(duì)類方法requestReview的注釋:
/** Request StoreKit to ask the user for an app review. This may or may not show any UI.
*
* Given this may not succussfully present an alert to the user, it is not appropriate for use
* from a button or any other user action. For presenting a write review form, a deep link is
* available to the App Store by appending the query params "action=write-review" to a product URL.
*/
兼容
因?yàn)镾KStoreReviewController這個(gè)類是10.3新增加的,這個(gè)方法在10.3之前的系統(tǒng)上運(yùn)行時(shí)沒有任何反應(yīng)(親測(cè))斗躏,所以我們的App還需要兼容之前的系統(tǒng)逝慧,下面是10.3之前跳轉(zhuǎn)到AppStore評(píng)論頁面的代碼:
NSString *str = [NSStringstringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@", appID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
也可以使用以下代碼:
NSString *str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@?action=write-review", appID];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
參考博客
下面是幾個(gè)國(guó)外開發(fā)者針對(duì)10.3在App內(nèi)直接評(píng)論這一技術(shù)發(fā)表的博客,大家可以參考一下啄糙。
- SKStoreReviewController - Allow Users to Provide Ratings From Within Your iOS App
- How & when to ask for app reviews and ratings including iOS 10.3
- Thoughts on Employing SKStoreReviewController Intelligently
希望對(duì)大家有所幫助馋艺。