LBAppStoreReview icon indicating copy to clipboard operation
LBAppStoreReview copied to clipboard

LBAppStoreReview

作者自制学习iOS开发的一款app

技术交流群:534926022(免费) 511040024(0.8/人付费)

封装去App Store评论,用法很简单,只需把LBToAppStore拖进自己的项目,用的地方导入头文件,然后如下

-(void)viewDidAppear:(BOOL)animated{
    
    //用户好评系统
    LBToAppStore *toAppStore = [[LBToAppStore alloc]init];
    //该app的app ID
    toAppStore.myAppID = @"1067787090";
    [toAppStore showGotoAppStore:self];

}

(LBAppStoreReview)