0

I am trying to make a web browser in Xcode 3.2 and I was wondering if I could add tab capabilities to it. I am not talking about Xcode tabs in which I can show different files, but tabs for the web browser that I am making such as the ones in Safari and Firefox.

Any help would be appreciated.

Thank you!

1 Answers1

2

Check the documentation for NSTabView.

NSResponder
  • 16,861
  • 7
  • 32
  • 46
  • Thank you! I could use that, but I was wondering if it was possible to create Safari-like tabs. Not that I don't appreciate your answer though. Thank you again! – AlienWorlds Productions Dec 12 '10 at 16:22
  • If you want to draw your own style of tabs, then you'll probably want to subclass NSTabViewItem and override -drawLabel:inRect: – NSResponder Dec 12 '10 at 17:02