gpt4 book ai didi

c++ - 从 C++ 对象调用 Objective-C 父对象

转载 作者:太空宇宙 更新时间:2023-11-04 13:14:18 27 4
gpt4 key购买 nike

在 iOS 上创建音频单元扩展需要混合使用 C++ 和 Objective-C 类。结果,我现在有了一个 Objective-C 对象,其中一个 C++ 对象作为其变量之一。

我希望 C++ 子对象能够将某些状态更改通知其 Objective-C 父对象/所有者。

在伪代码中:

void cppChildObject::callMom() {
objectiveCParent::notificationMethod();
}

这有可能以优雅的方式实现吗?

最佳答案

这取决于您如何定义优雅...如果 C++ 类位于 Objective-C++ 文件(扩展名为 .mm 的文件)中并且不被 C++ 代码直接使用,那么这可能是一种相当优雅的方式不在 Objective-C++ 源文件中。问题在于,只有在 Objective-C++ 源文件中,C++ 代码才能使用 Objective-C 类型。这是一个简单的示例,希望对您有所帮助。

Objective-C++ 文件,mylib.mm(注意 .mm 扩展名):

#import "objcpp.h"
#import <stdio.h>
#import "cpp.h"

// A C++ class in an Objective-C++ file.
// This C++ class would not need to sub-class ParentNotifier, and ParentNotifier
// would not be needed at all if it were not for OutsiderCPP, which talks to its
// Objective-C parent through InsiderCPP.
class InsiderCPP : public ParentNotifie {
public:
InsiderCPP(MyClassOCPP * parent) : myParent(parent){}
void doSomething() {
callMom("To Mom from insider.");
}
void callMom(const char * msg) {
[myParent notificationMethod:msg];
}
private:
MyClassOCPP * __weak myParent;
};

@interface MyClassOCPP ()

@property InsiderCPP * insiderChild;
@property OutsiderCPP * outsiderChild;

@end

@implementation MyClassOCPP
-(id)init {
self.insiderChild = new InsiderCPP(self);
self.outsiderChild = new OutsiderCPP(self.insiderChild);
return self;
}
-(void)doWork {
self.insiderChild->doSomething();
self.outsiderChild->doSomething();
}
-(void)notificationMethod:(const char *)msg {
printf("Parent has been notified with: %s\n", msg);
}
-(void)dealloc {
delete self.insiderChild;
delete self.outsiderChild;
}
@end

这是相应的头文件,objcpp.h:

#ifndef objcpp_h
#define objcpp_h

#import <Foundation/Foundation.h>

@interface MyClassOCPP : NSObject
-(id)init;
-(void)dealloc;
-(void)doWork;
-(void)notificationMethod:(const char*)msg;
@end

#endif

这是一个与 Objective-C 无关的“纯”C++ 源文件 (mylib.cpp):

#include <stdio.h>
#include "cpp.h"

void OutsiderCPP::callMom(const char * m) {
myParent->callMom(m);
}
void OutsiderCPP::doSomething() {
callMom("To Mom from outsider.");
}

这是相应的头文件(cpp.h):

#ifndef cpp_h
#define cpp_h

class ParentNotifier
{
public:
virtual void callMom(const char *) = 0;
};

class OutsiderCPP
{
public:
OutsiderCPP(ParentNotifier * p) : myParent(p) {}
void doSomething();
void callMom(const char *);

private:
ParentNotifier * myParent;
};

#endif

请注意,此示例仅用于说明目的,并非生产质量。

关于c++ - 从 C++ 对象调用 Objective-C 父对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38157689/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com