I have a custom ViewController that is designed to be reused, and an arbitrary number of instances will be connected together in the NavigationController in the Storyboard, all of which will use the same model as the delegate.
ViewController must specify the model in which they are presented. They currently have an int property that they get from segue, but it does not seem very idiomatic and does not lend itself to multiple instances on the screen (for iPad). I believe there should be a cleaner way to do this, and does anyone know what that is? Thanks.
RESULT: self.view.tag
mgold source share