이번주 국제협력
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
OPIC은..
2011-03-21 11:10:33

비싸다. ㅠㅠ

결국 면접 일정 나오면 그에 맞춰서 해야지 괜히 시험삼아 볼가격은 아닌 듯..

▼ more