Domness
Domness

Reputation: 7605

iPhone SDK: Locking the orientation

I've seen it on a previous app (forgetting the app name), where you could lock the current orientation of the screen.

Is there an easy way for this to be done, for example, simply using a button.

Upvotes: 3

Views: 2790

Answers (1)

nduplessis
nduplessis

Reputation: 12436

Just add an ivar to your app delegate that can be set by pressing the locking button. Then in all of your view controllers you can just check the ivar in the app delegate and respond to the

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

message according to your orientation ivar

Upvotes: 5

Related Questions