我想从我的框架中获取资源。我已将请求资源放入框架中,打开框架时可以看到它。我将框架放入项目中,而当我尝试获取框架时却失败了。项目中的资源。
我试图以与框架公开的头文件相同的捆绑软件获取资源。
// FaceRecognition is defined in the framework
NSBundle *bundle = [NSBundle bundleForClass:[FaceRecognition class]];
NSString* absolutePath = [bundle pathForResource:@"model" ofType:@"bin"];
我希望除了将资源放入项目之外,我还可以在框架中获取资源。