FTMoreApps

码农软件 · 软件分类 · 其他(Others) · 2019-07-19 16:26:46

软件介绍

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);
    };

}Ios_simulator_screen_shot_17.06.2015_20.11.43

本文地址:https://codercto.com/soft/d/10486.html

C语言常用算法分析

C语言常用算法分析

明日科技 / 2012-1 / 39.80元

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

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具