Xcode 디버깅 설정

2014. 10. 28. 17:26개발자료/iOS


반응형


Debug창(Command + 6)에서 왼쪽 하단의 + 선택


Add Exception Breakpoint - Exception All => Done


Add Symbolic Breakpoint - Symbol에 malloc_error_break 입력 => Done

Add Symbolic Breakpoint - Symbol에 objc_exception_throw 입력 => Done


Product - Scheme - Edit Scheme - Run 프로젝트명.app 선택 - Arguments - Environment Variables 의 + 선택

name : NSZombieEnabled/ Value : YES

name : NSDebugEnabled/ Value : YES


Product - Scheme - Run 프로젝트명.app 선택 - Diagnostics

Enabled Zombie Objects 활성

malloc Stack 활성




● 오류발생 소스코드 출력하기

Debug Windows의 Show Breakpoints 에 objc_exception_throw 값을 설정





 


반응형

'개발자료 > iOS' 카테고리의 다른 글

UIApplicationDelegate Event Function  (0) 2014.10.28
UIImage  (0) 2014.10.28
메모리 관리  (0) 2014.10.28
Status Bar 없애기  (0) 2014.10.28
iPhone 3GS UI Element Size  (0) 2014.10.28