ARC forbids Objective-C objects in struct

问题原因:我的项目没有使用ARC,但是引入的第三方库使用了ARC

解决办法:指定单个文件是否采用ARC来进行编译 
在Build Phase->Compile Source里面找到需要特殊处理的文件,编译选项(Compiler Flags)设置为-fno-objc-arc

ARC forbids Objective-C objects in struct