본문 바로가기

[swift3] custom segue transition animation # 오른쪽화면이 왼쪽으로 이동하며 등장 (right to left)# 왼쪽화면이 오른쪽으로 이동하며 등장 (left to right) # 적용 : Segument 선택 > Attributes Inspector 탭 > Kind = Custom 선택, Class = SegueLeftToRight 또는 SegueRightToLeft 선택 끝. 더보기
[iOS] how to create iOS/swift .gitignore in MacOS terminal(console) # console(terminal)에서 iOS/swift .gitignore 생성하기 console(terminal)에서 작업. console(terminal)로 git 프로젝트 이동. https://gitignore.io 에서 ignore 기본값을 받아오도록 git config 설정 ( .gitignore 파일은 아직 생성되지 않음 ) $ git config --global alias.ignore '!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi' .gitignore 에 swift 및 macos 관련 설정 추가 및 적용 ( .gitignore 파일 생성 ) $ git ignore swift,macos > .gitignore 추가한 .gitignor.. 더보기
[android] how to create android .gitignore in android studio # AndoridSudio에 .gitignore 추가하기 AndroidSutiod App단위 root path 최상단에 단 하나의 .gitignore 만 존재하면 된다. project별로 ignore를 다르게 하고 싶다면 프로젝트 단위 폴더에 .gitignore를 별도로 추가하면 된다. .gitignore 에 아래 옵션들을 추가 후 저장한다. # Created by https://www.gitignore.io/api/android ### Android #### Built application files*.apk*.ap_ # Files for the ART/Dalvik VM*.dex # Java class files*.class # Generated filesbin/gen/out/ # Gradle file.. 더보기
[git/gitlab] how to clone with gitlab ID/PW in console # 콘솔에서 Gitlab 계정(push권한)을 이용한 클론하기. Gitlab에서 clone은 따로 접근권한이 필요 없으므로 console 에서 clone 시 아무 문제 없이 받아진다. > git clone http://YOUR_REMOTE_URL:YOUR_PORT/YOUR_PROJECT.git 하지만 clone 후 해당 프로젝트를 수정하고 add/commit 후 push하려 했을 때 다음과 같은 오류에 직면하게 된다. remote: GitLab: You are not allowed to push code to this project.To http://YOUR_REMOTE_URL:YOUR_PORT/YOUR_PROJECT.git ! [remote rejected] master -> master (pre-re.. 더보기
sitemap 더보기