문제

I installed 'Mantle' using coco pod. But when I try to use it in my model, it is getting this error.

/Users/bgbb/Developer/experimental/MantleTest/MantleTest/TestMTL.h:11:32: Cannot find protocol declaration for 'MTLJSONSerializing'

#import "MTLModel.h"

@interface TestMTL : MTLModel <MTLJSONSerializing>

@end

This is my podfile.

platform :ios, '7.0'

pod 'Mantle', '1.1.2'

I am not sure what I am missing. Any clue?

도움이 되었습니까?

해결책

The protocol declaration for MTLJSONSerializing is in MTLJSONAdapter.h

While you could fix this by adding another import (#import "MTLJSONAdapter.h"), it's generally better to import a library or framework's umbrella header.

You should import Mantle's umbrella header to get access to all of the public interfaces in Mantle:

#import <Mantle/Mantle.h>

@interface TestMTL : MTLModel <MTLJSONSerializing>

@end
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top