我试图用以下代码呈现一个基本条形图:

    import UIKit
    import CorePlot

    class BarChart: CPTGraphHostingView, CPTPlotDataSource, CPTPlotDelegate, CPTPlotSpaceDelegate
    {
    let data: [[UInt]] = [
        [30, 40, 100],
        [10, 44, 35]
    ]

    func renderData() {
        let barGraph = CPTXYGraph(frame: self.bounds)
        self.hostedGraph = barGraph
        barGraph.axisSet = nil

        var space: CPTXYPlotSpace = barGraph.defaultPlotSpace as! CPTXYPlotSpace
        barGraph.addPlotSpace(space)
        space.yRange = CPTPlotRange(locationDecimal: CPTDecimalFromFloat(0), lengthDecimal: CPTDecimalFromFloat(50))
        space.xRange = CPTPlotRange(locationDecimal: CPTDecimalFromFloat(0), lengthDecimal: CPTDecimalFromFloat(3))
        space.delegate = self

        var bar = CPTBarPlot(frame: barGraph.bounds)
        bar.dataSource = self
        bar.barWidth = 3

        barGraph.addPlot(bar, toPlotSpace: space)
    }

    func numberForPlot(plot: CPTPlot, field: UInt, recordIndex: UInt ) -> AnyObject? {
        return data[0][Int(idx)]
    }

    func barFillForBarPlot(barPlot: CPTBarPlot, recordIndexRange indexRange: NSRange) -> AnyObject? {
        return CPTFill(color: CPTColor(componentRed: 0, green: 0, blue: 255, alpha: 1))
    }

    func numberOfRecordsForPlot(plot: CPTPlot) -> UInt {
        return 3
    }
    }

该类与情节提要中的视图关联。
不幸的是,我无法显示任何数据(但是当我用“cc>删除该行时,轴是可见的”)。我遗漏了什么吗?谢谢!

最佳答案

使用Swift时,我建议从GitHub获取“release-2.0”分支上的Core Plot版本。它有一些API更改,使使用Swift更容易。最大的一个是提供使用NSDecimal值的方法和属性的替代品,例如绘图范围。我希望在Xcode7最终发布后不久就发布2.0。
不需要将默认绘图空间添加到图形中;它已经存在。
-numberForPlot:field:recordIndex:函数应将值返回为NSNumber。返回值时强制转换该值,例如return data[0][Int(idx)] as NSNumber

10-04 19:33