核心图-[UIView setHostedGraph:]:无法识别的选择器
经过几个小时的研究和反复试验,我已经解决了我的核心情节大问题。 并且遇到了另一个问题。 我以为我修复的那个将是最后一个。 但不,是另一件。 无论如何,这是今天的问题:-[UIView setHostedGraph:]: 无法识别的选择器发送到实例 0xa524970
我假设它与此有关:hostingView.hostedGraph = barChart; 。 请帮我解决一下。 这真的是真的 真的 真的意味着如果有人可以帮助我的话就分配给我。 http://pastebin.com/dqXbjWNv 是我遇到问题的代码。
I have fixed my big Core Plot problem after hours of research and trial and error.
And have bumped into another issue.
I thought the one I fixed would be the final one.
But no, another one.
Anyway, here is todays issue:-[UIView setHostedGraph:]: unrecognized selector sent to instance 0xa524970
Im assuming it has something to do with this: hostingView.hostedGraph = barChart; .
Please help me solve it.
It would really really really really mean allot to me if some one could help me out.
http://pastebin.com/dqXbjWNv
Is the code that I'm having trouble with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该错误意味着您的
hostingView
是UIView
,而不是CPTGraphHostingView
。确保在 Interface Builder 中更改类名。That error means that your
hostingView
is aUIView
, not aCPTGraphHostingView
. Make sure to change the class name in Interface Builder.如果您使用 CPTGraphHostingView 并仍然收到此错误,则可能与链接器标志有关,
请设置 -ObjC -all_load
在构建设置中的其他链接器标志中
If you are using CPTGraphHostingView and still get this error it might be related to the linker flag,
set -ObjC -all_load
in other linker flags in build settings