美文网首页
iOS Charts的集成及简单的折线使用

iOS Charts的集成及简单的折线使用

作者: 猜火车丶 | 来源:发表于2018-10-17 18:18 被阅读111次

    当前集成版本为3.2.1
    Xcode版本为10.0
    目的:将项目集成至OC项目中。
    项目地址为https://github.com/danielgindi/Charts

    1.使用CocoaPods集成

    platform :ios, '9.0'
    target 'TestCharts' do
    use_frameworks!
        
    pod 'Charts'
    post_install do |installer|
    installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '4.2'
    end
    end
    end
    
    end
    

    这里有一点要说明的是use_frameworks!必须要添加,如果项目中因为包含.a静态库而无法使用,如出现以下类似报错

    The 'Pods-ProjectName' target has transitive dependencies that include static binaries:(/Users/guolei/Documents/xxx/xxxx/ProjectName/Pods/TXLiteAVSDK_Player/TXLiteAVSDK_Player/SDK/TXLiteAVSDK_Player.framework)

    这儿是具体分析问题 产生的原因
    下面这段也是必须要添加进去的,没有写的情况下,编译器会说swift版本不支持,后面的swift版本号根据具体情况修改。

    post_install do |installer|
    installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '4.2'
    end
    end
    end
    

    2.使用Carthage集成

    我在这里因为framework的原因采用了Carthage的方式来集成,因为这里我是第一次使用Carthage,所以我也将流程记录下来,以供参考

    1.安装Carthage

    brew install carthage
    

    2.通过命令查看版本了解安装是否完成

    carthage version
    

    3.通过终端进入到项目所在的文件夹,并创建一个空的Carthage文件(也可直接前往目录手动创建),并用Xcode打开Cartfile文件。

    cd ~/Path/Project
    touch Cartfile
    open -a Xcode Cartfile
    

    4.编辑Cartfile文件

    github "danielgindi/Charts" ~> 3.2.1
    

    这里版本的含义如下:

    ~> 3.0 表示使用版本3.0以上但是低于4.0的最新版本,如3.5, 3.9
    == 3.0 表示使用3.0版本
    >= 3.0表示使用3.0或更高的版本
    

    如果你没有指明版本号,则会自动使用最新的版本

    5.保存关闭Cartfile文件后执行

    carthage update --platform iOS
    

    命令执行完毕后,项目文件夹会创建一个名为Carthage的文件夹,在项目目录下有这几个目录/Carthage/Build/iOS,iOS目录里会出现Charts.framework文件已经为你创建好了。
    将framework文件导入到

    image.png 该位置即可。
    这里的导入工作,在Xcode10之前可能有所不同,具体可搜索相关文章。

    3.项目的桥接及使用

    1.在项目中创建一个swift文件

    image.png

    点击创建后会弹出步骤2

    2.让系统生成桥接的头文件,选择create bridging header

    image.png

    3.在桥接文件中@import Charts;

    image.png

    4.在项目需要的位置引入头文件,即可使用Charts

    #import "TestCharts-Bridging-Header.h"
    #import "TestCharts-Swift.h"
    

    5.简单的使用

    下面是初始化及简单的属性设置

        LineChartView *lineChart = [[LineChartView alloc] initWithFrame:CGRectMake(0, 80, self.view.frame.size.width, 160)];
        lineChart.noDataText = @"暂无数据";
        lineChart.legend.form = ChartLegendFormNone;
        lineChart.dragEnabled = YES;//拖动手势
        lineChart.pinchZoomEnabled = YES;//捏合手势
        lineChart.rightAxis.enabled = NO;//隐藏右Y
        lineChart.chartDescription.enabled = YES;//不显示描述label
        lineChart.doubleTapToZoomEnabled = NO;//禁止双击缩放
        lineChart.drawGridBackgroundEnabled = NO;
        lineChart.drawBordersEnabled = NO;
        lineChart.dragEnabled = NO;//拖动气泡
        lineChart.leftAxis.labelCount = 5;
        lineChart.maxVisibleCount = 999;
        [lineChart animateWithXAxisDuration:2.0 easingOption:ChartEasingOptionEaseOutBack];//动画时长
        lineChart.xAxis.valueFormatter = [[DateValueFormatter alloc] initWithArr:@[@"0",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"10",@"11",@"12",@"13",@"14",@"15",@"16",@"17",@"18",@"19",@"20",@"21",@"22",@"23",@"24"]];//x轴点
        lineChart.xAxis.labelPosition = XAxisLabelPositionBottom;//x轴位于底部
        lineChart.chartDescription.text = @"";
        lineChart.leftAxis.axisMinimum = 0;
        lineChart.legend.enabled = NO;//是否显示数据项代表的意义
        [self.view addSubview:lineChart];
    

    下面是y轴数据项的加载

    NSMutableArray *yValye = [NSMutableArray array];
    for (int i = 0; i < dataArr1.count; i++) {
                
      double valye = [dataArr1[i] floatValue];
      ChartDataEntry *entry = [[ChartDataEntry alloc] initWithX:i y:valye];
      [yValye addObject:entry];
    }
            
    LineChartDataSet *dataSet = [[LineChartDataSet alloc] initWithValues:yValye];//第一条线
    [dataSet setColor:kRGBAColor(10, 159, 230, 1)];
    dataSet.drawFilledEnabled = NO;
            
    NSMutableArray *yValye2 = [NSMutableArray array];
    for (int i = 0; i < dataArr2.count; i++) {
                
      double valye = [dataArr2[i] floatValue];
      ChartDataEntry *entry = [[ChartDataEntry alloc] initWithX:i y:valye];
      [yValye2 addObject:entry];
    }
    LineChartDataSet *dataSet2 = [[LineChartDataSet alloc] initWithValues:yValye2];//第二条线
    [dataSet2 setColor:kRGBAColor(202, 127, 57,1)];
    dataSet2.drawFilledEnabled = NO;
    self.lineChart.data = [[LineChartData alloc] initWithDataSets:@[dataSet,dataSet2]];
    

    以上即是Charts的集成及简单使用。因为在个人集成中发现网上的文章有部分内容偏久,并且自身在集成中出现了一些问题,所以进行了简单的记录,希望对各位有所帮助。

    相关文章

      网友评论

          本文标题:iOS Charts的集成及简单的折线使用

          本文链接:https://www.haomeiwen.com/subject/fburzftx.html