아이폰 에러처리는
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
MGTwitter delegate methods
2011-03-21 15:29:04

MGTwitterEngine provides five delegate methods in total:

def requestSucceeded(requestIdentifier)

end

def requestFailed(requestIdentifier, withError:error)

end

def statusesReceived(statuses, forRequest:identifier)

end

def directMessagesReceived(messages, forRequest:identifier)

end

def userInfoReceived(userInfo, forRequest:identifier)

end

▼ more