본문 바로가기

분류 전체보기

(30)
[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가 잘못연결되어 나는 에러이다 대부분 초보자 분들이 이름을 변경할 때나 소스를 지우고 다시 코드를 짤 때 연결 끊어야지 생각만 하고 코딩하다 실행할 때 나는 오류이다 여기서 연결 두개 된것을 끊어주면 쉽게 해결 완료!!
[iOS, swift] floatingButton 만들기 floatingButton을 만들때 이 링크 처럼 이렇게 각 버튼이 떨어져 있으며 따로 다른 동작을 해야하는 것일 일반적입니다. 하지만 제가 만들어야하는 floating button은 이와 같이 붙어있으며 하나의 버튼으로 작동해야하는 특이한 케이스였기 때문에 custom 하였습니다. 아래는 floating Back이라고 적혀있는 뷰를 사용한 것이고 위 버튼은 floating Button에 커스텀 한 것입니다 사실 위에 버튼은 클릭이 되지 않지만 단지 뷰를 어떻게 그렸는지 설명하기 위하여 그린 것입니다. 저는 stack View를 활용하여 만들었는데요 Stack View 란? UIStackView는 iOS 9에서 나온 개념으로 여러 개의 View를 한 셋트로 만들어주는 역할을 하는 View입니다. 그래서 ..