Since Xcode 6
, when you bind objects from the Storyboard
/ xib
to a variable in your class, they often show not bound
in the class.
Thus, the search for the corresponding Storyboard
/ xib
is slower, since you need to manually go and open the corresponding file (if you know exactly where this view controller is located among all the Storyboard
/ xib
in your code).
There seems to be no workaround.
Has anyone found the same problem? And with that, did anyone find a workaround?

source share