在 XCode 中创建框架

发布于 2024-11-30 15:40:32 字数 722 浏览 1 评论 0原文

我正在 XCode 4 中创建一个框架。我将此标头公开 (SkypeListener.h):

#import <Foundation/Foundation.h>
#import <Skype/Skype.h>

void start();
void stop();


@interface SkypeListener : NSObject <SkypeAPIDelegate>

- (void)start;
- (void)stop;

@end

该框架称为 SkypeTestFramework。现在为了测试这个框架,我设置了一个新项目,将 SkypeTestFramework 拖到框架文件夹中并导入:

#import <SkypeTestFramework/SkypeListener.h>

但我收到此错误:

/Users/****/Desktop/testskype/SkypeTestFramework.framework/Headers/SkypeListener.h:10:9: fatal error: 'Skype/Skype.h' file not found [1]

我做错了什么?谢谢。

哦还有,在 SkypeTestFramework 中,我使用的是一个名为 Skype.framework 的框架。难道是这个造成了问题吗? 谢谢。

I am creating a framework in XCode 4. I made this header public (SkypeListener.h):

#import <Foundation/Foundation.h>
#import <Skype/Skype.h>

void start();
void stop();


@interface SkypeListener : NSObject <SkypeAPIDelegate>

- (void)start;
- (void)stop;

@end

The framework is called SkypeTestFramework. Now to test this framework and I setup a new project, dragged SkypeTestFramework into the frameworks folder and imported:

#import <SkypeTestFramework/SkypeListener.h>

But I get this error:

/Users/****/Desktop/testskype/SkypeTestFramework.framework/Headers/SkypeListener.h:10:9: fatal error: 'Skype/Skype.h' file not found [1]

What am I doing wrong? Thanks.

Oh also, in SkypeTestFramework, I am using a framework called Skype.framework. Could it be that, that's causing the problem?
Thanks.

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

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

发布评论

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

评论(3

往昔成烟 2024-12-07 15:40:32

如果您创建了Skype/Skype.h,则可以这样写:导入“Skype/Skype.h”。但如果它不是当前项目的一部分,则需要包含完整路径。

If you created Skype/Skype.h, would write it like: import "Skype/Skype.h". But you would need to include the full path if it not part of your current project.

我也只是我 2024-12-07 15:40:32

Skype提供的Skype.framework与Xcode 4.1不兼容。事实上,它是 PPC 的原型

The Skype.framework provided by Skype is incompatible with Xcode 4.1. In fact, it's of PPC arche

狠疯拽 2024-12-07 15:40:32

您可以从 Skype.app 获取新的 Skype.framework

You can get new Skype.framework from Skype.app

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