Reputation: 1198
In the Android Studio, every view have a separate file and user can go from Java file to its view file by click on this
setViewContant(R.layout.my_view);
Is there is any way in Xcode that can take user form viewController.swift
to is related layout file. Because it's totally Spaghetti in Main.Storyboard
Upvotes: 0
Views: 42
Reputation: 161
Unfortunately I don't remember a better way than just search the ViewController class name.
btw: I would suggest to split the Main.storyboard in smaller ones! ;)
Upvotes: 1