Objc file
#import "EncryptionConstants.h"
@implementation EncryptionConstants
char encKey[] = "secretKey";
char iv[] = "secretIV";
@end
after creating a bridging file, I am doing this in a swift file..
var enc = EncryptionConstants()
print(enc.encKey)
Getting an error like:
value of EncryptionConstants has no member encKey.