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

数据结构与算法

数据结构与算法

卓滋德克 / 陈曙晖 / 清华大学出版社 / 2003-4-1 / 69.00

本书是一本介绍数据结构与算法的优秀书籍。 本书系统介绍了C++面向对象程序设计、算法复杂度、链表、栈、队列、递归、树、图、排序和查找算法、散列技术、数据压缩算法、内存管理等内容;尤其对递归算法进行了深入剖析。在附录中详细介绍了大O符号与标准模板库:在大多数章中提供了相应的实例分析和程序设计作业。 本书适合作为计算机软件专业或其他相关专业的教科书。对于需要参加计算机考试,......一起来看看 《数据结构与算法》 这本书的介绍吧!

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

在线压缩/解压 JS 代码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具