xcode(3)
-
내 Xcode프로젝트에서 쓰는 provisioning profile uuid 확인하는 방법
확인하고 싶은 프로비저닝 프로파일이 설치되어 있지 않은 경우 애플개발자 센터에서 프로비저닝 프로파일을 다운로드 한 후 더블클릭하여 설치.~/LibraryMobileDevice/Provisioning\ Profiles/ 로 이동ls그런데 나오는 목록이 너무 많은 경우?다음과 같이 확인.확인하려는 xcode프로젝트로 이동 > cd blarblar.xcodeproj > grep ‘PROVISIONING_PROFILE’ project.pbxproj ~/LibraryMobileDevice/Provisioning\ Profiles/로 이동하여 1번에서 확인한 uuid를 > openssl smime -in uuid.mobileprovision -inform der -verify 이 provisioning파일에 대한 ..
2018.01.23 -
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