장미접기
2011-03-21 22:37:18

http://m.blog.naver.com/PostView.nhn;jsessionid=A43F5B686E5B2EE9778642834590A379.jvm1?blogId=limsaemi&logNo=110046948820&categoryNo=0¤tPage=1&sortType=recent

▼ more
아이폰 에러처리는
2011-03-21 18:27:52

로그인이 되고 나서 TweetViewController의 ViewDidLoad안의 31,32,33 라인이 되도록 한다.

뻗는건 static때문이 아니다.

▼ more
이번주 국제협력
2011-03-21 18:13:29

catch error!!

▼ more
__weak keyword in Objective-C
2011-03-21 16:43:21

Objective-C 2.0 provides an optional conservative, yet generational garbage collector. When run in backwards-compatible mode, the runtime turns reference counting operations such as "retain" and "release" into no-ops. All objects are subject to garbage collection when garbage collection is enabled. Regular C pointers may be qualified with "__strong" to also trigger the underlying write-barrier compiler intercepts and thus participate in garbage collection. A zero-ing weak subsystem is also provided such that pointers marked as "__weak" are set to zero when the object (or more simply, GC memory) is collected. The garbage collector does not exist on the iPhone implementation of Objective-C 2.0. Garbage Collection in Objective-C runs on a low-priority background thread, and can halt on user events, with the intention of keeping the user experience responsive.

from WIKI

▼ more