When in the view life cycle can you change the values of objects that were put there in IB?
I have a stepper and a UIImageView that I put into the view in IB. I had put some values of them (like the stepper min and the UIImageView’s image) in ViewDidLoad but when the view appears, it uses the stepper min and the image that were set in IB.
Ah. I see the problem. I had a UILabel that was displaying the value and I didn’t have it set yet to connect to the UIStepper’s value until the value changed. My bad. Thanks guys!