제2외국어(90)
-
xcode 4.2가 되면서 달라진 점.
xcode 4.2가 나온지는 괘 됬지만... 전 사자보다 표범을 좋아해서(?) 이제서야 표범용 4.2가 나와서 쓰게되었습니다. 이번에 4.2를 쓰면서 라이트한 개발자로써 확 달라진게 있다면 3가지 정도로 말할 수 있습니다. 1. ARC (Automatic Reference Counting) : 문자 그대로 자동 레퍼런스 카운트가 가능해졌다. 키고 끌수 있는 기능인데 (옛 소스들을 사용하기 위해서..) 이제 새로 프로젝트를 만들때 메모리관리에 대해 더 이상 개발자가 머리쓸 필요없다. 무슨 말이냐 하니... 더 이상 retain, release, retainCounter, autorelease 같은 걸 사용할 필요가 없다는 말이다. 습관처럼 [ temp release ] ; 쓴다면 "너 님은 4.2의 새로운..
2011.10.31 -
xcode 4 버전 이상부터 프레임워크 추가하는 방법.
프레임워크 폴더에서 오른쪽 버튼으로 add 찾는데 없어서 당황..
2011.10.26 -
[error]warning: couldn't add 'com.apple.XcodeGenerated'??
warning: couldn't add 'com.apple.XcodeGenerated' tag to '/Users/user/Library/Developer/Xcode/DerivedData/Sample-dzauplljamlzyxgtrdmengyyjbce/Build/Intermediates/Sample.build': Error Domain=NSPOSIXErrorDomain Code=2 UserInfo=0x2020ded80 "The operation couldn’t be completed. No such file or directory" 가끔씩 Xcode 4로 업데이트 후에 사용하게 되면 Build Location 이 default로 되어있어서 저런(?) 에러가 뜨는 경우가 있습니다. 정확한 해결법은 아닐지 ..
2011.10.25 -
[Objective-C] 전역 변수 사용하기.
전역변수 만큼 유용한게 없지 말입니다. Objective-C에서는 딱히 전역변수라고 정해진게 없어서 Plist를 활용하거나 또는 delegate 등을 많이 이용하시는데요 아주 간단하게(?) 전역 변수를 사용하는 방법이 있어서 소개하겠습니다. 1. [파일명].h 과 [파일명].mm 파일을 만듭시다. 2. [파일명].h 안에 전역 변수로 사용한 변수들을 extern 이라는 키워드와 함께 적어주시기 되겠습니다. ex) ---------------------------------- extern double sum; extern double average; extern int count; ---------------------------------- 3. [파일명].mm 에 가서 헤더파일을 추가하시고 초기화를 사..
2011.06.20 -
[Objective-C]퍼즐 게임을 만들어보자. (2)
이어서 시작하겠습니다. puzzleViewController.m 로 가주세요. .h에서 @property 한 것들을 @synthesize 해주셔야 합니다. @synthesize button1; @synthesize button2; @synthesize button3; @synthesize button4; @synthesize button5; @synthesize button6; @synthesize button7; @synthesize button8; @synthesize button9; @synthesize button10; @synthesize button11; @synthesize button12; @synthesize button13; @synthesize button14; @synthesize ..
2011.06.02