FTMoreApps
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/ftapps/FTMoreApps
软件介绍
FTMoreApps 是一个 iOS 库,可以在你的应用中创建显示视图控制器,来展示你的 app 的开发者页面。
使用示例:
#import <FTMoreApps/FTMoreApps.h>
...
- (IBAction)buttonPressed:(id)sender {
FTMoreApps *moreAppsManager = [FTMoreApps sharedManager];
[moreAppsManager presentMoreAppsInViewController:self
developerId:@"318226300" // You can find your developer id in your iTunes link of your apps: https://itunes.apple.com/us/artist/felipe-tumonis/id318226300?mt=8
descriptionType:FTDescriptionTypeScreenshots
completion:nil];
/*
// OR
[moreAppsManager presentMoreAppsInViewController:self
appIds:@[@"app_id_1", @"app_id_2", ...] // The ids of the apps you want to show
descriptionType:FTDescriptionTypeText
completion:nil];
*/
moreAppsManager.showActionButton = NO;
moreAppsManager.showPrice = NO;
moreAppsManager.title = NSLocalizedString(@"More apps", nil);
moreAppsManager.willDismissBlock = ^{
NSLog(@"will dismiss more apps view controller");
};
moreAppsManager.didDismissBlock = ^{
NSLog(@"did dismiss more apps view controller");
};
moreAppsManager.didSelectAppBlock = ^(NSString *appId){
NSLog(@"did select app id: %@", appId);
};}
罗辑思维:迷茫时代的明白人
罗振宇 / 北京联合出版公司 / 2015-9 / 42
编辑推荐 1、 罗振宇,自媒体视频脱口秀《罗辑思维》主讲人,互联网知识型社群试水者,资深媒体人和传播专家。曾任CCTV《经济与法》《对话》制片人等。2012年底打造知识型视频脱口秀《罗辑思维》。半年内,由一款互联网自媒体视频产品,逐渐延伸成长为全新的互联网社群品牌。 他对商业和互联网的独到见解,影响了互联网一代的知识结构和对互联网的认识:人类正在从工业化时代进入互联网时代。新的时代将彻......一起来看看 《罗辑思维:迷茫时代的明白人》 这本书的介绍吧!
