0
所以我使用core-plot,我必須覆蓋CPTLayer中用於CPTAxisLabel的方法,但不是所有標籤,所以我製作了一個CustomCPTAxisLabel類來執行此操作。 問題是我必須重寫renderAsVectorInContext巫婆是從CPTLayer的方法, CPTAxisLabel繼承CPTLayer和CustomCPTAxisLabel繼承CPTAxisLabel(如下所示:CPTLayer-> CPTAxisLabel-> CustomCPTAxisLabel)。問題是我如何重寫CustomCPTAxisLabel中的CPTLayer方法?如何覆蓋繼承類的方法
我都準備好了,但是這個方法並沒有被調用,我也不知道爲什麼...... – edo 2014-09-10 09:09:33
你可以從_CustomCPTAxisLabel_類發佈一些代碼。此外,您爲其分配對象的代碼。 – Gandalf 2014-09-10 09:35:10
在.H我已#IMPORT 「CPTAxisLabel.h」 接口CustomCPTAxisLabel:CPTAxisLabel - (無效)renderAsVectorInContext:(CGContextRef)上下文; end and in .m @implementation CustomCPTAxisLabel - (void)renderAsVectorInContext:(CGContextRef)context {0;}} {super renderAsVectorInContext:context]; } – edo 2014-09-10 09:58:05