I have a modal ViewController acting as a custom alert in my app.
In it, I have a UIButton title set to some "default text" in Interface Builder.
In my viewWillAppear
method, I am setting the button title to "new text".
When I run the app and alert VC appears, I can visibly see the transition of UIButton from "default text" to "new text".
I thought all processing in viewWillAppear() was supposed to be invisible. Any thoughts? (I do not want to make these changes in ViewDidLoad.)