iOS评分功能

3. APP内弹窗SKStoreReviewController

 

引入头文件
#import <StoreKit/StoreKit.h> + (void)openRatingViewInApp { Class SKSRC = NSClassFromString(@"SKStoreReviewController"); if (SKSRC) { [SKSRC performSelector:@selector(requestReview)]; } }

这样可以很好地实现系统兼容,可以在不支持10.3系统的低版本xcode上编译。

 

posted @ 2022-01-28 10:59  循序渐进A  阅读(78)  评论(0)    收藏  举报