にObjCにファイル..私は迅速なファイルでこれをやって、ブリッジファイルを作成した後
#import "EncryptionConstants.h"
@implementation EncryptionConstants
char encKey[] = "secretKey";
char iv[] = "secretIV";
@end
をObjective Cのの.mファイルのcharデータ型の文字列を宣言し、スウィフトにそれを使用
var enc = EncryptionConstants()
print(enc.encKey)
のようなエラーを取得:
EncryptionConstantsの値はメンバーenckeyというのがありません。以下のような
https://stackoverflow.com/questions/22850548/where-to-declare-a-static-variable-in-objective-cあなたは、静的変数を宣言しています。 –