Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- self-signed ssl
- GDI
- JavaScript
- M8200
- .net
- VS2008
- C/C++
- 크래시로그
- 설치제거
- 자바스크립트
- 데이터 전달
- phpmailer
- 기념일관리
- php
- net
- API
- Font
- plcrashreporter
- 블루투스 헤드셋
- ClickOnce
- protobuf-c
- docker
- MFC
- 한 번만 실행
- PDA
- C#
- 와이브로
- crashlog
- Antialiasing
- EUC-KR
Archives
- Today
- Total
~☆~ 우하하!!~ 개발블로그
Xcode 프로젝트 이름 변경하기 본문
728x90
반응형
참고 URL : http://aplus.rs/cocoa/how-to-rename-project-in-xcode-3x/
How to rename project in Xcode 3.x
I thought this would be a simple thing to do, but apparently not. There’s no option to copy the state of the project as it is and continue working on it under the new name. The reason I need this is that I’m going through AAron Hillegass’s Cocoa Programming for Mac OS X, 3rd ed. and some of the projects span several chapters, each introducing new concepts. Thus I wanted to have each in the state it was at the end of the chapter, than compare and analyze the differences, to better understand what’s new and improved.
Since no option, we go with manual work.
- Copy/rename the folder into new name
- Get inside the new folder and rename the
.pch
and.xcodeproj
files - Delete the build folder
- Open
.xcodeproj
file in text editor, like TextMate or TextWrangler. That’s actually a folder, which contains 4 files (you can also right-click and doShow package contents
, which will reveal the files) - Open project.pbxproj in text editor and replace all instances of the old name with the new name
- Load the project file in XCode, do
Build
/Clean all targets
Now it should be ready for new build, under new name.
반응형
'iPhone & Cocoa' 카테고리의 다른 글
Organizer 의 ScreenShots 파일이 저장되는 디렉토리 (0) | 2010.09.07 |
---|---|
아이폰에 할당된 IP Address 얻는 방법 (0) | 2010.02.03 |
간혹 Code Sign 에 필요한 Provisioning 파일을 찾을 수 없다는 에러가 뜬다. (0) | 2009.12.23 |
아이템 개수 가져오기 (0) | 2009.12.20 |
[iPhone] [NSString] 문자열 뒤의 공백 Trim (0) | 2009.12.18 |