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

编程珠玑

编程珠玑

Jon Bentley / 黄倩、钱丽艳 / 人民邮电出版社 / 2008-10 / 39.00元

本书是计算机科学方面的经典名著。书的内容围绕程序设计人员面对的一系列实际问题展开。作者Jon Bentley 以其独有的洞察力和创造力,引导读者理解这些问题并学会解决方法,而这些正是程序员实际编程生涯中至关重要的。本书的特色是通过一些精心设计的有趣而又颇具指导意义的程序,对实用程序设计技巧及基本设计原则进行了透彻而睿智的描述,为复杂的编程问题提供了清晰而完备的解决思路。本书对各个层次的程序员都具有......一起来看看 《编程珠玑》 这本书的介绍吧!

html转js在线工具
html转js在线工具

html转js在线工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

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

RGB CMYK 互转工具