Re: I can't step into any message of Objective-C object
Re: I can't step into any message of Objective-C object
- Subject: Re: I can't step into any message of Objective-C object
- From: Chan-gu Lee <email@hidden>
- Date: Sun, 30 Mar 2008 21:55:54 +0900
Hi.
I understand why I can't do step into property accessor
, but here is another code fragment which I can't do step into also.
Class MMovie_FFmpeg:
- (double)decodeVideo
{
//TRACE(@"%s(%d) %d %d", __PRETTY_FUNCTION__, _nextVideoBufId,
_decodedImageCount, _decodedImageBufCount);
...
}
- (void)videoDecodeThreadFunc:(id)anObject
{
...
while (!_quitRequested) {
...
_decodedImageTime[_nextVideoBufId] = [self decodeVideo];
...
}
...
}
MMovie_FFmpeg is created in main thread(thread-1), and
videoDecodeThreadFunc
runs on thread-19.
I can't do step into the decodeVideo from videoDecodeThreadFunc:.
Proxy object do its job in this case for handling object which is
called beyond thread, too?
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden