iPhone CorePlot:错误-“CPBarPlotFieldBarLength:”未申报
您好,我正在尝试在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CPBarPlotFieldBarLength
已重命名为CPBarPlotFieldBarTip
。CPBarPlotFieldBarLength
has been renamed toCPBarPlotFieldBarTip
.