SwiftChart Library无法使用Swift 3.0

时间:2016-09-10 08:01:08

标签: ios swift swift3 swiftcharts

我已使用SwiftChart来实现线条和区域图,如下图Line and chart area所示。

Xcode 7.3可以正常使用。现在我将我的代码移植到iOS 10,以便将代码转换为Swift 3.0。我收到了以下错误:

û

CGPathMoveToPoint(area, nil, CGFloat(xValues[0]), zero)

for i in 0..<xValues.count {
    CGPathAddLineToPoint(area, nil, CGFloat(xValues[i]), CGFloat(yValues[i]))
}

CGPathAddLineToPoint(area, nil, CGFloat(xValues.last!), zero)

if labels[i] != 0 {
    // Horizontal grid for 0 is not dashed\
    CGContextSetLineDash(context,phase:0,lengths:[5],count:1)
   // CGContextSetLineDash(context, 0, [5], 1)
} else {
    CGContextSetLineDash(context, 0, nil, 0)
}

请帮我修复此问题

1 个答案:

答案 0 :(得分:0)

SwiftChart的最新更新解决了上述问题。请将您的swift图表库代码更新为最新的