I have a view that is initialized with - (id)initWithCoder:(NSCoder *)aDecoder
How do I initialize this view in a viewController?
I think I need the viewController if I want the view to autoRotate with the device. I am not sure, maybe I could accomplish the autoRotation without a viewController?
Adding a observer and shouldAutorotateToInterfaceOrientation: to the view did not autoRotate the view. But when I also add
-(void) orientationChanged:(NSNotification *) notification
{
NSLog(@"orientationChanged: %d", [[notification object] orientation]);
}
I get the orientation value in my console window.
Any help would be highly appreciated.