Sha256: fa6f0bc4f99bf6e8bb17a5ebd8dfdee3173a57f2b2438f1c76ce10dc46f26deb
Contents?: true
Size: 391 Bytes
Versions: 19
Compression:
Stored size: 391 Bytes
Contents
class LandscapeOnlyController < UIViewController def viewDidLoad UIApplication.sharedApplication.windows[0].rootViewController = MainController.alloc.init end def shouldAutorotateToInterfaceOrientation(orientation) if orientation == UIInterfaceOrientationLandscapeLeft or orientation == UIInterfaceOrientationLandscapeRight true else false end end end
Version data entries
19 entries across 19 versions & 1 rubygems