Programming/XCode(3)
-
App Store Connect ... Issue
2019년 6월 시점으로 유니티 2018.3 혹은 2018.4 버전으로 iOS빌드를 하게되면 경고 메일이 날아옵니다. ITMS-90339: Deprecated Info.plist KEY - the Info.plist contains a key 'UIApplicationExitsOnSuspend' ... 이런 내용인데 Xcode가 최신버전으로 업데이트됨에 따라 info.plist에 있는 저 key값이 deprecated되었나보다. 해결하려면 빌드 후처리 과정에서 단순히 저 키값을 제거해 주면 된다. 그런데 이걸 지우는 과정이 은근 귀찮기 이를데 없다. 기다리고 있으면 유니티가 해줄텐데 ...
2019.06.27 -
Xcode 6 이상에서 Empty Application template 생성하기
Xcode 5를 포함한 이전버전에서는 새로 프로젝트를 만들때 Empty Application template 을 선택하여 스토리보드나 xib없이 깨끗하게 빈시작용 프로젝트를 얻을 수 있었다. 하지만Xcode 6부터는 그저 Empty하나만 남았는데 이걸 선택하면 정말 텅빈 프로젝트가 생성된다.. -- 방법은 1. Single View Application 선택하여 프로젝트 생성2. Main.storyboard, launchscreen.xib를 프로젝트에서 제거3. SupportingFile> Info.plist를 열어서 Main storyboard file base name에서 Main스토리보드 이름 제거 Launch screen interface file base name에서 launchscreen 이름..
2014.12.13 -
XCode 단축키 모음
command + Shift + o : 심볼 + 파일 찾기command + Shift + j : 현재 에디트 중인 파일을 프로젝트에서 지정 에디팅 command + / : 주석-코드 전환 이동 control + command + 왼쪽 : 이전 보던 위치 control + command + 오른쪽 : 다음 보던 위치 control + command + 위 : header / source 전환 control + command + j : jump to definition 찾기 & 바꾸기 command + f : 현재 파일 안에서 찾기 command + shift + f : 워크스페이스 안에서 찾기 command + g : 다음 찾기 command + shift + g : 이전 찾기 command + optio..
2014.12.06