일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- net
- 크래시로그
- crashlog
- 와이브로
- php
- VS2008
- GDI
- phpmailer
- self-signed ssl
- C/C++
- 설치제거
- ClickOnce
- M8200
- 데이터 전달
- .net
- 한 번만 실행
- EUC-KR
- C#
- 자바스크립트
- MFC
- 기념일관리
- plcrashreporter
- JavaScript
- Font
- docker
- Antialiasing
- API
- PDA
- protobuf-c
- 블루투스 헤드셋
- Today
- Total
목록분류 전체보기 (254)
~☆~ 우하하!!~ 개발블로그
크래시로그에 스택트레이스를 남기기 위한 파일
프로그램 최초 실행시 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions - (void)applicationDidBecomeActive:(UIApplication *)application 프로그램 백그라운드모드로 전환시 (멀티태스킹 지원되는 iOS) - (void)applicationWillResignActive:(UIApplication*)application - (void)applicationDidEnterBackground:(UIApplication *)application 프로그램 포그라운드모드로 전환시 - (void)applicationWillEnterF..
iOS Deployment Target 을 iOS 3.0 으로 설정하면 해결됨. 너무나 간단함....
사이트에서 다운로드받은 프로젝트를 빌드하면 다음과 같은 에러가 발생한다. (Xcode 3.2.3) #error CC_ENABLE_PROFILERS must be enabled. Edit ccConfig.h 빌드 에러가 발생하는 파일은 PerformanceNodeChildrenTest.m 이다. PerformanceNodeChildrenTest.h 와 PerformanceNodeChildrenTest.m 파일에서 _profilingTimer 변수 사용 부분을 #if CC_ENABLE_PROFILERS #endif 블럭으로 감싸주면 해결된다.
1. 다운로드 cocos2d library for iPhone http://code.google.com/p/cocos2d-iphone/ 2010년 9월 15일 현재 0.99.4 stable version 0.99.5 beta version 2. 설치 (참조 : http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:lesson_1._install_test) 다운로드받은 파일의 압축을 푼다. 압축을 풀어낸 결과는 아래 그림과 같다. Xcode 프로젝트 파일인 cocos2d-iphone.xcodeproj 을 열어서 프로젝트를 구경해보고 빌드해 볼 수 있다. Xcode 버전이 3.2.3 이하(포함)인 경우만 지원하고 있으므로 유의해야 한다. 2-1. 템플릿 설치 프로..
/Users/username/Library/Application Support/Developer/Shared/Xcode/Screenshots
참고 URL http://blog.zachwaugh.com/post/309927273/programmatically-retrieving-ip-address-of-iphone
참고 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 p..