*** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[MKUserLocation commentType]:无法识别的选择器
我在尝试添加用户位置时收到此错误。我有一个表格视图,当我尝试滚动时,我收到此错误。我对 xcode 很陌生。
* 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[MKUserLocation commentType]:无法识别的选择器发送到实例 0x803f090”
非常感谢任何帮助。
i am receiving this error when trying to add user location. I have a table view and when i try to scroll, i receive this error. I'm very new to xcode.
* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[MKUserLocation annotationType]: unrecognized selector sent to instance 0x803f090'
Any help is much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MKUserLocation 没有annotationType 方法。您向 MKUserLocation 发送一条它不知道如何处理的消息。
MKUserLocation does not have an annotationType method. You're sending MKUserLocation a message that it does not know how to handle.
我以前遇到过这种情况,通常是因为 simple &不明显的错误类型,即格式错误 - 没有根据意外的格式调用函数,类型错误。
我使用:
“ABC”函数,我声明不是基于预期的函数格式。
我用的是
:
I am encountered this before, it is normally because of simple & not obvious type of mistake i.e format wrong - didn't call a function based on the unexpected format, type wrong.
I used:
The "ABC" function, I declared not based on the expected function format.
Instead of:
I used: