I\'m developing iOS Universal App with Swift, using auto layout and support only portrait.
I found UIViewController.viewDidLayoutSubviews called multipl
The best thing to do and this has served me well - is to get in to the habit of adding a log or print statement to methods of which you are unsure
I use this ->
print("Hello From \(NSStringFromSelector(#function))")
or this if inside a View Subclass
Swift.print("Hello From \(NSStringFromSelector(#function))")
It will print the method when it is being called.