Let me get this out of the way: I'm used to to UIKit
, where you can push/pop view controllers to your hearts content. That just doesn't work on the Mac.
With TwUI
, this works extremely well on the Mac. For example, look at @joshaber
's push/pop example using TwUI. If TwUI
was completely stable and capable of embedding AppKit
controls inside a TUIView
, I would ditch AppKit completely. However, not everything can be done in TwUI
, and I need to retain AppKit for some things.
Thus brings my question. How can something like this be accomplished using AppKit? Is there a library that has made this easy? Or do we need to make it ourselves? Just using replaceSubview:withSubview:
isn't enough, and isn't really pushing/popping views.