본문 바로가기

iOS 프로그래밍/오류

(8)
Error: Permission denied @ apply2files - /usr/local/lib/docker/cli-plugins Error: Permission denied @ apply2files - /usr/local/lib/docker/cli-plugins 오류는 존재하지 않는 폴더를 가리키는 심볼릭 링크때문이었습니다. mkdir -p /Applications/Docker.app/Contents/Resources/cli-plugins 로 간단히 해결 가능합니다.
[swift] ERROR : THREAD 9~13: Signal SIGABRT 이런 오류를 본 사람이라면 info.plist에 Privacy - Photo Library Usege Description 이러한 설정을 잊지 않았는지 확인하자
[swift] imageView에 사진 회전되어 들어가는 오류 평소처럼 사진을 찍어 사진을 업로드 하는데 문제가 생겼었다. jpg로 잘 묶어 보냈는데 라이브러리에서 사진을 가져오는 것(세로 가로), 사진을 찍을 때 가로로 찍을 때 다 잘 들어가지만 사진을 세로로 찍었을 때 돌아가는 것이다. 꼬질꼬질한 에어팟 케이스ㅎㅎ https://www.it-swarm-ko.tech/ko/ios/업로드-후-ios-uiimagepickercontroller-결과-이미지-방향/971651940/ 다른 사람들도 그런 오류가 있었던거 같지만 소스가 다 너무 길어서 이해하기 힘들었기에 여기서 가장 간단한 소스를 참고하여 해결 하였다. [swift] // 세로 이미지 회전 문제로 인한 함수 func fixOrientation(img: UIImage) -> UIImage { if (img.i..
[iOS] Unable to simultaneously satisfy constraints.(assistantView) error assistantView error in console If autolayout is perfect and you get this error [LayoutConstraints] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. ( "..
Xcode textfield에서 키보드가 올라오지 않을 때 Xcode textfield에서 키보드가 나타나지 않고 타자로만 칠 수 있을때 당황 스러울 수 있다. 하지만 command + 화살표 위 key(▲) + k 를 눌러 간단히 해결할 수 있다.
xcode 10 업데이트 후 command codesign failed with a nonzero exit code 에러 이 오류를 겪어본 사람이라면 구글에 이 오류를 검색하여 키체인을 조작하라는 포스팅이 많이 보이게 된다 하지만 나는 cmd + shift + k 를 눌러 간단히 해결하였다
[iOS] cocoaPods 오류가 날때 라이브러리 정리하기 sudo gem install cocoapods-deintegrate cocoapods-clean pod deintegrate pod clean pod install
[Xcode] Thread 1: signal SIGABRT 오류 Thread 1: signal SIGABRT unable to dequeue a cell with identifier myCell1 - must register a nib or a class for the identifier or connect a prototype cell in a storyboard id가 잘못연결되어 나는 에러이다 대부분 초보자 분들이 이름을 변경할 때나 소스를 지우고 다시 코드를 짤 때 연결 끊어야지 생각만 하고 코딩하다 실행할 때 나는 오류이다 여기서 연결 두개 된것을 끊어주면 쉽게 해결 완료!!