분류 전체보기

    Git에 관한 간단한 이해

    Git에 관한 간단한 이해

    Why? 협업 프로젝트를 하면서 겪은 git에 대한 접근 내용과 간단한 의문점을 간단히 정리해보고자 포스팅합니다. Git (terminal) git add 현재 폴더에 있는 모든 내용을 임시저장소에 추가합니다. commit 전 아무리 많은 add를 해도, 원격저장소에는 전혀 영향을 주지 않습니다. 뒤에 .(dot)은 모든 내용이라는 의미이며, 선택한 파일만 추가하고 싶다면, 해당 파일에 이름을 적어주시면 됩니다. git commit 임시저장소에 있는 내용과 함께 변경사항을 확정짓고, 메세지와 함께 남길 수 있습니다. 작업내용을 되돌리고 싶을 때 commit내역에 따라 되돌릴 수 있기 때문에, commit은 필수라고 말할 수 있습니다. git branch MAC에 있는 모든 branch 목록을 확인할 수 ..

    TableView Top(header) Padding 제거

    TableView Top(header) Padding 제거

    (Macbook Air M1 8-256 Monterey 12.5.1 Xcode 13.3) Why? 앱을 구현하고 있는 도중 다음과 같은 공백을 발견했습니다. 상단에는 NavigationBar가 있고, 밑에는 TableView가 있는 ViewController입니다. 분명 예전에 구현했을 때 이런 issue가 없었던 것 같은데...(?) 분명 제약을 제대로 설정했는데도 불구하고, 왜 이런 공백이 나오나 싶어서 구글링한 결과 다음과 같은 해결방법을 찾을 수 있었습니다. 해결방법 이 issue는 padding issue, tableview header gap issue, navigateionbar bottom space view top issue, navigationbar bottom view top not ..

    Xcode: XC_BAD_ACCESS (code=2, address=0x16eca7f10)

    Xcode: XC_BAD_ACCESS (code=2, address=0x16eca7f10)

    (Macbook Air M1 8-256 Monterey 12.5.1 Xcode 13.3) Error 개인 앱 프로젝트 작업 도중 갑자기 뜬금없이 이런 에러를 만났습니다. 시뮬레이터 동작이 굼뜨더니, 좀 지나니 이런 에러가 뜨더군요. 뭔가 주소가 맞지 않다는 뜻인걸로 보입니다. 해결방법 알고 보니 현재 클로저로 선언한 변수 내부에 self로 선언을 잘못 기재하였습니다. 해당 코드를 클로저 내부 문법에 맞게끔 구현하니 잘 해결되었습니다.

    Xcode: IB Designalbes error: Failed to render and update auto layout status for HomeVC (4IU-KS-Veu): Failed to launch designables agent because tool was shutting down. check the console for a more detailed description and please file a bug report at ...

    Xcode: IB Designalbes error: Failed to render and update auto layout status for HomeVC (4IU-KS-Veu): Failed to launch designables agent because tool was shutting down. check the console for a more detailed description and please file a bug report at ...

    (Macbook Air M1 8-256 Monterey 12.5.1 Xcode 13.3) Error pod file에 import해놓은 달력 라이브러리인 FSCalendar에서 이런 오류가 발생했습니다. IB Designalbes error: Failed to render and update auto layout status for HomeVC (4IU-KS-Veu): Failed to launch designables agent because tool was shutting down. check the console for a more detailed description and please file a bug report at ... 대략 해석을 하자면, HomeVC(제가 만든 ViewControll..