开发者

".objc_class_name_CUIFramework",referenced from:

开发者 https://www.devze.com 2022-12-22 01:08 出处:网络
I\'m working with developing an application for iPhone in Objective-C Can anyone tel me how to solve this error:

I'm working with developing an application for iPhone in Objective-C

Can anyone tel me how to solve this error:

".obj_class_name_CUIFramework", referenced from:
collect2:ld returned 1 exit status
literal-pointer@_OBJC@_cls_refs@CUIFramework in MF_CoreAppDelegate.o
symbol(s) not found

I tried to compile my code, i don't have idea for what this error is related to. Please help.what could be the problem?

i've added Found开发者_如何学编程ation framework and UIKit framework


Your code's well-formed, so compiles just fine. When the linker tries to link your application to the frameworks you use, it finds that you reference a framework that's not been imported to your application.

It looks like your code is using a class CUIFramework, but that you haven't added the appropriate framework to your project.

0

精彩评论

暂无评论...
验证码 换一张
取 消