Notice
Recent Posts
Recent Comments
Link
투케이2K
138. (ios/swift) 브릿지 헤더 파일에 import 추가 방법 - bridging header 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
//
// testCode3-Bridging-Header.h
// testCode3
//
// Created by 601559965 on 2022/03/25.
//
// -----------------------------------------
#ifndef testCode3_Bridging_Header_h
#define testCode3_Bridging_Header_h
// -----------------------------------------
// [import 헤더 파일 추가 실시 : AES 암호화 알고리즘 필요 헤더 파일]
#import <CommonCrypto/CommonCrypto.h>
// -----------------------------------------
#endif /* testCode3_Bridging_Header_h */
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
Comments