美文网首页
仿finder toolbar

仿finder toolbar

作者: 高思阳 | 来源:发表于2018-10-18 11:20 被阅读19次

https://stackoverflow.com/questions/41372245/align-nstoolbaritems-with-nssplitview-columns

Finder and Notes have a peculiar behaviour that I am seeking to reproduce. The ‘flexible space’ in the NSToolbar seems to take the dimensions of the split view into account. For instance, the first group of buttons aligns on the left side with the right side of the sidebar. The second group of icons aligns with the right side of the first column. When I widen the sidebar, the toolbar items move along with it.

Is it possible to reproduce this?

Solution With the solution provided by @KenThomases, I have implemented this as follows: final class MainWindowController: NSWindowController {

override func windowDidLoad() {

super.windowDidLoad()

window?.toolbar?.delegate = self

// Make sure that tracking is enabled when the toolbar is completed

DispatchQueue.main.async {

self.trackSplitViewForFirstFlexibleToolbarItem()

}

}

}

extension MainWindowController: NSToolbarDelegate {

func toolbarWillAddItem(_ notification: Notification) {

// Make sure that tracking is evaluated only after the item was added

DispatchQueue.main.async {

self.trackSplitViewForFirstFlexibleToolbarItem()

}

}

func toolbarDidRemoveItem(_ notification: Notification) {

trackSplitViewForFirstFlexibleToolbarItem()

}

/// - Warning: This is a private Apple method and may break in the future.

func toolbarDidReorderItem(_ notification: Notification) {

trackSplitViewForFirstFlexibleToolbarItem()

}

/// - Warning: This method uses private Apple methods that may break in the future.

fileprivate func trackSplitViewForFirstFlexibleToolbarItem() {

guard var toolbarItems = self.window?.toolbar?.items, let splitView = (contentViewController as? NSSplitViewController)?.splitView else {

return

}

// Add tracking to the first flexible space and remove it from the group

if let firstFlexibleToolbarItem = toolbarItems.first, firstFlexibleToolbarItem.itemIdentifier == NSToolbarFlexibleSpaceItemIdentifier {

_ = firstFlexibleToolbarItem.perform(Selector(("setTrackedSplitView:")), with: splitView)

toolbarItems.removeFirst()

}

// Remove tracking from other flexible spaces

for flexibleToolbarItem in toolbarItems.filter({ $0.itemIdentifier == NSToolbarFlexibleSpaceItemIdentifier }) {

_ = flexibleToolbarItem.perform(Selector(("setTrackedSplitView:")), with: nil)

}

}

}

1 Answer

You can do this with Apple-private methods, although that's not allowed in the App Store.

There's a private method, -setTrackedSplitView:, on NSToolbarItem. It takes an NSSplitView*as its parameter. You need to call it on the flexible-space toolbar item that you want to track a split view and pass it the split view it should track. To protect yourself against Apple removing the method, you should check if NSToolbarItem responds to the method before trying to use it.

Since the user can customize and re-order the toolbar, you generally need to enumerate the window's toolbar's items. For the first one whose identifier is NSToolbarFlexibleSpaceItemIdentifier, you set the split view it should track. For all other flexible-space items, you clear (set to nil) the split view to track. You need to do that when the window is first set up and again in the toolbar delegate's -toolbarWillAddItem: and -toolbarDidRemoveItem:methods. There's also another undocumented delegate method, -toolbarDidReorderItem:, where I've found it useful to update the toolbar.

Fantastic, this seems to work. Two comments: (1) toolbarWillAddItem: requires a slightly different behaviour, because the toolbar items are not updated when this method is called. Instead setTrackedSplitView: should be called on this net item directly. (2) Setting the remaining items to nil results in erratic behaviour and an error of kind ‘unrecognised selector’. – Eitot Dec 29 '16 at 16:10

1

You should only set the remaining flexible-space items to track nil. I assume that, under the hood, there's a specific subclass for those items. You need to clear the tracked split view for those because you may have previously set it for one of them and then they changed order. With regard to -toolbarWillAddItem:, my code does defer the update of the items to the end of the run loop cycle using dispatch_async() to the main queue. – Ken Thomases Dec 29 '16 at 16:30

Calling it in a DispatchQueue.main.async() works in my code only when the application is running, but on startup it does not seem to work. Can you given an example of how you implemented this? – Eitot Dec 29 '16 at 17:14

I think I got it now. Updated solution above. Thanks again! – Eitot Dec 29 '16 at 17:49

相关文章

网友评论

      本文标题:仿finder toolbar

      本文链接:https://www.haomeiwen.com/subject/ogujzftx.html