open override func copyWithZone(_ zone: NSZone?) -> AnyObject
{
let copy = super.copyWithZone(zone) as! RealmBaseDataSet
copy._results = _results
copy._yValueField = _yValueField
copy._xValueField = _xValueField
copy._yMax = _yMax
copy._yMin = _yMin
copy._xMax = _xMax
copy._xMin = _xMin
return copy
}
open class RealmPieDataSet: RealmBaseDataSet, IPieChartDataSet
{
Type 'RealmPieDataSet' does not conform to protocol 'IPieChartDataSet'
func copyWithZone(_ zone: NSZone?) -> AnyObject。Method does not override any method from its superclass
let copy = super.copyWithZone(zone) as! RealmBaseDataSet Static member 'copyWithZone' cannot be used on instance of type 'ChartBaseDataSet'
I also have this situation, need I change it manually?
I also have this situation, need I change it manually?
解决了没有 😄
RealmBaseDataSet is about Realm. So you should ask on ChartsRealm btw.
ChartsRealm didn't get updated yet. So maybe this is the reason.