Wondering how to implement tabs in the same style as Espresso.app:

Is there a native class/view to use or is this done with a 3rd party solution?
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.
Unless you want to use a 3rd party solution like BWToolkit, you can simply use a standard
NSToolbar, that sends selection notifications to one of your controller classes. You can then use anNSTabViewto switch between the panels, and in yourIBActionmethod (that receives selection notifications) you can determine which item is selected, and programmatically switch yourNSTabViewto the proper index.