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);
};}
C语言常用算法分析
明日科技 / 2012-1 / 39.80元
《C语言学习路线图•C语言常用算法分析》共分为4篇,第1篇为算法基础篇,包括程序之魂——算法、数据结构基础、查找与排序算法、基本算法思想等内容;第2篇为常用算法篇,包括数学算法、矩阵与数组问题、经典算法等内容;第3篇为趣味算法篇,包括数学趣题、逻辑推理题等内容;第4篇为算法竞技篇,包括计算机等级考试算法实例、程序员考试算法实例、信息学奥赛算法实例等内容。 《C语言学习路线图•C语言常用算法分......一起来看看 《C语言常用算法分析》 这本书的介绍吧!
