从“ opencv2.framework”获取错误。 只是一个新项目包含“ opencv2.framework”未运行。
我的步骤:
我想念什么吗?
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#import <Availability.h>
#ifndef __IPHONE_4_0
#warning "This project uses features only available in iOS SDK 4.0 and later."
#endif
#ifdef __cplusplus
#import <opencv2/opencv.hpp>
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
#endif /* PrefixHeader_pch */
答案 0 :(得分:0)
第46行说明了一切:您必须在所有Apple标头之前放置opencv.hpp
。在PrefixHeader.pch
中移动
#ifdef __cplusplus
#import <opencv2/opencv.hpp>
#endif
之前
#import <Availability.h>