iPhone CorePlot:错误-“CPBarPlotFieldBarLength:”未申报

发布于 2024-11-01 17:38:40 字数 746 浏览 3 评论 0原文

您好,我正在尝试在我的 iPhone 应用程序中实现核心图

,因为我使用下面的代码

 -(NSNumber *)numberForPlot:(CPPlot *)plot 
                  field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index 
 { 
     if (plot.identifier==@"myBarChart") { 
         switch ( fieldEnum ) { 
             case CPBarPlotFieldBarLocation: 
                return (NSDecimalNumber *)[NSDecimalNumber numberWithUnsignedInteger:index]; 
             case CPBarPlotFieldBarLength: 
                 return [self.lockedPercentage objectAtIndex:index]; 
        } 

}

如果我在原始 coreplot 代码示例中使用此代码,它对于条形图工作正常,但是当我在我的应用程序中使用相同的代码时,它会给出错误

   case CPBarPlotFieldBarLength:Undeclared

什么可能是问题吗?

请帮助和建议

谢谢

Hi I am trying to implement core plot in My iPhone App

for that I use the below code

 -(NSNumber *)numberForPlot:(CPPlot *)plot 
                  field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index 
 { 
     if (plot.identifier==@"myBarChart") { 
         switch ( fieldEnum ) { 
             case CPBarPlotFieldBarLocation: 
                return (NSDecimalNumber *)[NSDecimalNumber numberWithUnsignedInteger:index]; 
             case CPBarPlotFieldBarLength: 
                 return [self.lockedPercentage objectAtIndex:index]; 
        } 

}

if I use this code in original coreplot code example it works fine for barchart but When I use same code in my App it is giving error

   case CPBarPlotFieldBarLength:Undeclared

What Could be the problem??

Please Help and Suggest

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缘字诀 2024-11-08 17:38:40

CPBarPlotFieldBarLength 已重命名为 CPBarPlotFieldBarTip

CPBarPlotFieldBarLength has been renamed to CPBarPlotFieldBarTip.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文