fatih
fatih

Reputation: 1181

UIViewController

how to understand that view is fully loaded?

Upvotes: 1

Views: 504

Answers (2)

Ole Begemann
Ole Begemann

Reputation: 135540

Check UIViewController's -isViewLoaded method.

Upvotes: 1

John Parker
John Parker

Reputation: 54415

The view is fully loaded by the time your UIViewController's viewDidLoad method is called.

You can also use the isViewLoaded method to determine if the view is currently loaded in memory.

Hmm... can't help but think that's not what you're trying to ask, but that's what you appear to have asked. These are exciting times.

Upvotes: 6

Related Questions