开发者

Problem while including custom framework in Project

I am trying to learn how to create custom frameworks and use them in a project in cocoa, so I began with a simple custom framework named - SimpleFramework.

It contains one class with only one class method:

// class name: SimpleClass, role: Public

+ (void)displayMessage{
    NSLog(@"Hello World");
}

I also set its Installation Directory path to - @executable_path/../Frameworks then compiled it.

I included it in another project - SimpleTest, using following steps-

  1. Dragged SimpleFramework.framework into Frameworks folder in project. Also selected Copy items to destination group's folder and Add To Targets check box.

  2. Created a New Copy Files Build Phase. Selected its destination as Frameworks.

  3. Dragged SimpleFramework.framework into it.

Problem is, when I am trying to import SimpleClass.h in SimpleTestAppDelegate class, it is giving 开发者_JAVA技巧this error message on compilation-

SimpleClass.h: No such file or directory.

Can anyone suggest me if I am doing anything wrong?

Code for application can be found here- Sample code link

Thanks,

Miraaj


I found its solution. I was missing this line:

#import "SimpleFramework/SimpleClass.h"
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜