Ok, for all who are interested, I got this to work.
The code remains the same as previously, I just had to make sure the storyboard in the framework was included in the resources used by the test application.
let frameworkBundle = NSBundle(identifier: "com.marizack.MyFramework")
let storyboard = UIStoryboard(name: "MyFramework", bundle: frameworkBundle)
let controller = storyboard.instantiateViewControllerWithIdentifier("MyNavigationController") as! MyNavigationController
controller.customTitle = self.myTextField.text
controller.modalTransitionStyle = .FlipHorizontal
self.presentViewController(controller, animated: true, completion: nil)
The entire workspage can be found at: http://www.marizack.com/Swift/SwiftFrameworks.zip
Enjoy !
Gene Backlin
iPhone and iPad App 24-Hour Trainer (2012 Wrox)
Professional iPhone and iPad Application Development (2010 Wrox)
Developing NeXTSTEP Applications (1995 Sams)