iOS: Uniquely identify ViewControllers from Storyboard
A UIViewController's UIView has a tag
property which you can set from anywhere you want. You could also simply identify the type of the controller by using [self class]
. Or simply use the memory location by referencing the controller directly.
Update You could simply implement a unique identifier for a UIViewController using a category.