개발/swift 4

xcode bitbucket git 연동하기

우선 본인은 프로젝트에 이미 깃이 연결되어 있는데 오류도나고 다시하고싶어서 finder에서 해당프로젝트 위치로 간다음 command + shift + . 키로 안보이는 폴더를 보이게한다음 .git 파일을 삭제한 후 시도하였다   다시 git을 연동해보자 터미널 접속 후 연동할 프로젝트가 있는 폴더로 이동한다. 이동 후  git init  입력 후 git remote add origin bitbucket에서clone한 주소 를 입력한다 ex)git remote add origin git@bitbucket.org:test/test.ios.git  입력 후  git add .git commit -m "initial version" 차례대로 입력한다. 아래에 main은 master로 만들었을수있으니 master..

개발/swift 2024.08.13

swift xcode LayoutConstraints 오류 Unable to simultaneously satisfy constraints

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. ( "", "" ) ​ https://www.wtfautolayout.com/ WTF Auto Layout? Make sense of cryptic Auto Layout error l..

개발/swift 2023.06.28