FTMoreApps是一个iOS库,可以在你的应用中创建显示视图控制器,来展示你的app的开发者页面。
使用示例:
#import <FTMoreApps/FTMoreApps.h>...- (IBActio)buttoPressed:(id)seder { FTMoreApps *moreAppsMaager = [FTMoreApps sharedMaager]; [moreAppsMaager presetMoreAppsIViewCotroller:self developerId:@"318226300" // You ca fid your developer id i your iTues lik of your apps: https://itues.apple.com/us/artist/felipe-tumois/id318226300?mt=8 descriptioType:FTDescriptioTypeScreeshots completio:il]; /* // OR [moreAppsMaager presetMoreAppsIViewCotroller:self appIds:@[@"app_id_1", @"app_id_2", ...] // The ids of the apps you wat to show descriptioType:FTDescriptioTypeText completio:il]; */ moreAppsMaager.showActioButto = NO; moreAppsMaager.showPrice = NO; moreAppsMaager.title = NSLocalizedStrig(@"More apps", il); moreAppsMaager.willDismissBlock = ^{ NSLog(@"will dismiss more apps view cotroller"); }; moreAppsMaager.didDismissBlock = ^{ NSLog(@"did dismiss more apps view cotroller"); }; moreAppsMaager.didSelectAppBlock = ^(NSStrig *appId){ NSLog(@"did select app id: %@", appId); };}
评论