I have one enum which is in constant.h file ( Objective-C )
typedef NS_ENUM (NSInteger, EEFieldType) {
EEFieldTypeHighFields = 1,
EEFieldTypeMediumFields = 2,
EEFieldTypeLowFields = 3
};
I have one bridging file which is connect to swift code and importing one file which file name is profile.
(ModuleName-Bridging-Header.h)
#import "Profile.h"
profile file using below method which is not compiled in code.
- (EEFieldType)fieldTypeByPFType;
Error : Expected a type on EEFieldType.