반응형
rss 아이콘 이미지
반응형

Pods-ProjectName-frameworks.sh 에서

 

source="$(readlink "${source}")"

 를 찾아서

 

source="$(readlink -f "${source}")"

 로 변경하였더니 정상적으로 아카이브가 진행되었다.

 

반응형

some files could not be transferred

카테고리 없음 2023. 9. 19. 14:41 Posted by 법당오빠
반응형

 source="$(readlink -f "${source}")"

 

-f 추가

반응형
반응형

gem install ffi --version 1.15.5 --user-install

반응형

architecture arm64 에러

카테고리 없음 2023. 7. 18. 12:28 Posted by 법당오빠
반응형
Xcode -> Target Project -> Build Setting -> Excluded Architectures > "arm64"
Xcode -> Pod Target -> Build Setting -> Excluded Architectures > "arm64"
반응형

swift 고급 연산자 (Advanced Operators)

카테고리 없음 2023. 7. 17. 17:01 Posted by 법당오빠
반응형
비트 연산자 (Bitwise Operators)
Swift에서도 여러 비트 연산자를 지원합니다.
비트 연산자 NOT (Bitwise NOT Operator)
비트 연산자 NOT은 비트를 뒤집습니다.

 

let initialBits: UInt8 = 0b00001111
let invertedBits = ~initialBits  // equals 11110000

반응형