문제

I would like to do some cleanup activity when a particular object resigns the FirstResponder. Is there any way to detect whether object has resigned first responder status.

What methods I need to implement to know this? Any pointers for this?

I already gone through this link. But I did not get much out of it.

NSTableView & NSOutlineView editing on tab key

도움이 되었습니까?

해결책

According to Apples's NSResponder documentation you should override the resignFirstResponder method for you subclass.

Something like this:

- (BOOL)resignFirstResponder
{
    [super resignFirstResponder];
    /* Your cleanup code here */
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top