iphone 这是关于链接的错误吗?

发布于 2024-10-18 08:21:33 字数 939 浏览 1 评论 0原文

我正在导入一些文件以在我的应用程序中制作日历,但我得到以下内容错误,

  "_OBJC_CLASS_$_CheckmarkTile", referenced from:
  objc-class-ref-to-CheckmarkTile in RosterCrViewController.o
 "_OBJC_CLASS_$_KLCalendarView", referenced from:
  objc-class-ref-to-KLCalendarView in RosterCrViewController.o

 ld: symbol(s) not found
 collect2: ld returned 1 exit status

看起来与此帖子解决方案完全相同 链接错误:找不到符号

在此处输入图像描述

但问题(基本,这里是菜鸟!,;p)

是我不知道如何使此屏幕显示“组成最终可执行文件的文件”(检查并希望修复错误)

链接文件可执行文件

[编辑] 好的,谢谢 Rajender,现在我检查了我的文件,但现在我收到 8 个错误!,为什么为什么(所有文件现在都被勾选了) 在此处输入图像描述

非常感谢!

Im importing some files to make a calendar in my app, but I get the following error,

  "_OBJC_CLASS_$_CheckmarkTile", referenced from:
  objc-class-ref-to-CheckmarkTile in RosterCrViewController.o
 "_OBJC_CLASS_$_KLCalendarView", referenced from:
  objc-class-ref-to-KLCalendarView in RosterCrViewController.o

 ld: symbol(s) not found
 collect2: ld returned 1 exit status

wich looks exactly like this post solution
Linking Error: Symbol Not Found

enter image description here

but the problem (basic, noob here!, ;p )

is I dont know how to bring this screen to show the "files that make up the final executable" (to check that and hopefully fix the error)

link files executable

[EDIT] OK thanks to Rajender, now I have my files checked, but now I get 8 errors!, why o why (all files are ticked now)
enter image description here

Thanks a lot!!

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

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

发布评论

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

评论(1

香草可樂 2024-10-25 08:21:33
"_OBJC_CLASS_$_CheckmarkTile"  this type of errors come when the class 'CheckmarkTile' is not the member of current target.

you have to make the member of current target.

there are two ways to remove these errors:-

1. right click on Groups & Files in the xCode and select Target Membership. Now make sure that the membership check box is on for the class CheckmarkTile.

2. just drag the file named CheckmarkTile to the active Target->Compile Sources.

Thats all what you need to solve these errors.
"_OBJC_CLASS_$_CheckmarkTile"  this type of errors come when the class 'CheckmarkTile' is not the member of current target.

you have to make the member of current target.

there are two ways to remove these errors:-

1. right click on Groups & Files in the xCode and select Target Membership. Now make sure that the membership check box is on for the class CheckmarkTile.

2. just drag the file named CheckmarkTile to the active Target->Compile Sources.

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