macOS NSTabViewController centered tab icons

490 Views Asked by At

I have a macOS app I have created. And I have a Preferences window built using a swift & storyboard with a tabless Toolbar styled NSTabViewController.

I see no way to override the positioning of the tab icons though - they default to the left side of the window. Is it possible?

enter image description here

4

There are 4 best solutions below

1
On BEST ANSWER

Subclass NSTabViewController and override func toolbarDefaultItemIdentifiers(_ toolbar: NSToolbar) -> [NSToolbarItem.Identifier]. Add a flexibleSpace toolbar item at both sides.

1
On

following Willeke's tip, I came up with this override in my NSTabViewController subclass:

override func toolbarDefaultItemIdentifiers(_ toolbar: NSToolbar) -> [NSToolbarItem.Identifier] {

    super.toolbarDefaultItemIdentifiers(toolbar)

    var arr = Array<NSToolbarItem.Identifier>()
    for item in self.tabViewItems {
        if let identifier = item.identifier {
            arr.append(NSToolbarItem.Identifier.init(identifier as! String))
        }
    }

    //insert flexible spaces at first and last index
    arr.insert(NSToolbarItem.Identifier.flexibleSpace, at: 0)
    arr.append(NSToolbarItem.Identifier.flexibleSpace)

    return arr
}
0
On

OC:

-(NSArray<NSToolbarItemIdentifier> *)toolbarDefaultItemIdentifiers:(NSToolbar *)toolbar{
    NSMutableArray *arr = [[super toolbarDefaultItemIdentifiers:toolbar] mutableCopy];
    [arr insertObject:[[NSToolbarItem alloc] initWithItemIdentifier:NSToolbarFlexibleSpaceItemIdentifier].itemIdentifier atIndex:0];
    [arr addObject:[[NSToolbarItem alloc] initWithItemIdentifier:NSToolbarFlexibleSpaceItemIdentifier].itemIdentifier];
    return arr;
}
1
On

Swift:

override func toolbarDefaultItemIdentifiers(_ toolbar: NSToolbar) -> [NSToolbarItem.Identifier] {
    var array = super.toolbarDefaultItemIdentifiers(toolbar)
    array.insert(NSToolbarItem.Identifier.flexibleSpace, at: 0)
    array.append(NSToolbarItem.Identifier.flexibleSpace)
    return array
}