我想可能会在图表视图中添加一个UIGestureRecognizer,获取触摸的位置,并以编程方式突出显示该条目.但是我怎样才能获得该特定位置的条目?谢谢
解决方法 我想出来为你节省一些时间extension GraphVIEwController: ChartVIEwDelegate { func chartValueSelected(_ chartVIEw: ChartVIEwBase,entry: ChartDataEntry,highlight: Highlight) { // I used the x pixel property of the highlight to update the // position of the floating label,and set its text to the // x value of the selected entry floatingLabelCenterConstraint?.constant = highlight.xPx floatingLabel.text = " Mar 14 \(highlight.x)" // Create the nice Transition animation // fadeIn() and fadeOut() are simple extension methods I wrote if floatingLabel.isHIDden { floatingLabel.fadeIn() subscripts.fadeOut() } // This gives you the y value of the selected entry greenNumber.text = Nsstring(format: "%.2f",highlight.y) as String }}
但是,只有在移动手指时才会调用此委托方法.您需要一种方法来判断平移手势何时结束.图表没有开箱即用的委托方法,因此您需要添加它.转到ChartVIEwBase.swift源文件,将以下内容添加到ChartVIEwDelegate协议
public protocol ChartVIEwDelegate{ ... @objc optional func panGestureEnded(_ chartVIEw: ChartVIEwBase)}
然后转到barlineChartVIEwBase.swift,找到panGestureRecognized函数
@objc private func panGestureRecognized(_ recognizer: NSUIPanGestureRecognizer){ ... else if recognizer.state == NSUIGestureRecognizerState.ended || recognizer.state == NSUIGestureRecognizerState.cancelled { ... // Add this line at the end delegate?.panGestureEnded?(self) }}
最后,返回到vIEwController并添加以下内容.现在一切都像魅力一样
func panGestureEnded(_ chartVIEw: ChartVIEwBase) { subscripts.fadeIn() floatingLabel.fadeOut() // clear selection by setting highlightValue to nil chartVIEw.highlightValue(nil)}总结
以上是内存溢出为你收集整理的使用iOS图表进行交互式跟踪.如何全部内容,希望文章能够帮你解决使用iOS图表进行交互式跟踪.如何所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)