用CGContextSetLineDash警告

时间:2015-12-16 15:12:08

标签: swift cgcontext ios-charts

我试图在我的应用中实现图表。我在我的应用中使用了这个graph库。它工作正常,但在控制台中显示15-20次警告。

CGContextSetLineDash: invalid dash array: at least one element must be non-zero.

1 个答案:

答案 0 :(得分:3)

你应该发布什么是参数值。

正如我可以从错误消息中假设的那样,您的参数为0且不允许。阅读关于破折号选项的CGContextSetLineDash。

// This dash shouldn't be zero
line1.lineDashLengths = [0, 0]