我正在使用RabbitMQ
AMQP classes
。我正在尝试使用
AMQP
的连接
AMQPConnection *t=[[AMQPConnection alloc]init];
[t connectToHost:@"localhost" onPort:5672];
[t release];
但是在使用此代码后我遇到了这种错误。我已从here
下载了AMQP
个班级
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_AMQPConnection", referenced from:
objc-class-ref in HomePageController.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
感谢。
解决方案:
我得到了上面的解决方案。 我已将AMQP类的所有.m文件添加到编译器源中,并且它对我有效。