Does anyone know any good app delegation reference? The type where it tells you the functions you can override and what they do? e.g
- (BOOL) ApplicationWillTerminateAfterLastWindowIsClosed{
return YES;
}
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use apple documentation. In each class reference you can easily find link to delegate protocol reference (if it exists). For example in NSTableView class references you can see Conforms to section (at the top of document) with all links you need including link to NSTableViewDelegate protocol references.
It is implied that you know main features of class you used, so you need just to read at least first page of documentation for class. There you can find all you need.
Hope, it helps.