개발76 Eclipse Workspace 변경 방법 출처: http://opreview.blogspot.com/2008/03/changing-eclipse-workspace-directory.html Eclipse의 workspace를 Windows 상에서 복사해서 옮기고 Eclipse를 띄우면 제대로 동작을 하지 않는 경우가 발생하는데 이럴때는 위의 링크에 적혀있는 내용대로 처리하면 된다. To change the workspace location in Eclipse do this. Goto ECLIPSE_HOME\configuration\.settings directory, edit the org.eclipse.ui.ide.prefs file and change the RECENT_WORKSPACES value to the desired locatio.. 2011. 7. 19. busybox-1.15.3에서 Makefile:431: *** mixed implicit and normal rules. Stop. 에러 나는 경우 출처: https://dev.openwrt.org/ticket/7981 make 3.8.2와 busy 박스의 궁합이 안맞아서 생긴 오류... 431c431< %config: scripts_basic outputmakefile FORCE--- config %config: scripts_basic outputmakefile FORCE 1279c1279< %/: prepare scripts FORCE--- / %/: prepare scripts FORCE 2011. 6. 4. 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 ··· 14 15 16 17 18 19 다음