tags:

views:

22

answers:

1

I was able to auto rate the view based application, but not window based application. When I google, I do get information for view based application only.

Tnx in advance Shan

A: 

listen for the UIDeviceOrientationDidChangeNotification

then you need to manually manage:

  • rotation transform
  • view frame
  • animation
  • status bar
  • disabling of user interaction

easiest is to just add a UIViewController and let it do it for you

cobbal
Thanks cobbal.. I have converted the project to UIViewcontroller and its working.
pshan