Sha256: 4ef4ce881b2a26729f2db1ce732584bdb8e3317258387fe9441383741914d364
Contents?: true
Size: 386 Bytes
Versions: 10
Compression:
Stored size: 386 Bytes
Contents
class LandscapeOnlyController < UIViewController def viewDidLoad UIApplication.sharedApplication.windows[0].rootViewController = FirstController.alloc.init end def shouldAutorotateToInterfaceOrientation(orientation) if orientation == UIDeviceOrientationLandscapeLeft or orientation == UIDeviceOrientationLandscapeRight true else false end end end
Version data entries
10 entries across 10 versions & 1 rubygems