개발/Object C16 Xcode에서 Header 파일과 소스 파일의 전환 Option + Command + ⇧ ⌥⌘ ⇧ 2011. 9. 14. Xcode 3 에서 블록을 한번에 comment 처리하는 방법 출처: http://hintsforums.macworld.com/archive/index.php/t-82572.html 블록 선택 후 ⌘+/(Command+/) 로 코멘트 처리 토글 2011. 9. 14. Base SDK Missing Error 대처 방법 Xcode에서 예전 SDK를 기준으로 만든 프로젝트들은 새로운 SDK에서 컴파일을 할 경우에 다음 그림과 같이 Base SDK Missing Error를 내면서 컴파일이 되지 않는다. 본 문서에서 사용된 예제는 Apple Developer 사이트에서 소스를 받을 수 있는 AppPrefs 프로젝트이다. 이 경우를 대처하는 방법은 다음과 같다. 1. Project Setting 변경 2. Target 변경 3. 프로젝트 Close 후 다시 Open 1. Project Setting 변경 그림과 같이 Project 메뉴 밑의 Edit Project Setting 메뉴을 선택해서 다음의 Project "AppPrefs" Info 다이얼로그를 띄우고 Base SDK를 iOS 4.0 (missing)에서 iOS 4.. 2011. 1. 3. Simple Path Example 출처: Stanford Univ. CS193P (2010 Winter) Lecture 5 - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); [[UIColor grayColor] set]; UIRectFill ([self bounds]); CGContextBeginPath (context); CGContextMoveToPoint (context, 75, 10); CGContextAddLineToPoint (context, 10, 150); CGContextAddLineToPoint (context, 160, 150); CGContextClosePath (context); [[UIColor redColor.. 2010. 9. 6. 이전 1 2 3 4 다음