Cocoa Programming for OS X: The Big Nerd Ranch Guide
by Aaron Hillegass, Adam Preble, Nate Chandler
Adding Tab Images
Finish out NerdTabViewController by adding individual images to the tab buttons for each view controller. The user will almost certainly enjoy being able to differentiate between the tabs.
To do this you need a way to tell the tab view controller what image to use for each tab. One approach would be to write methods for adding the child view controllers which take an image for the tab:
func addChildViewController(childViewController: NSViewController,
tabImage: NSImage)
This would work, but it is not a great choice because it calls into question the fate of the existing addChildViewController(_:) method. Can it still be called? What happens if it is called? A future developer’s existing knowledge of NSViewController ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access