Sha256: 5210dccb97c78128324727dc9390aa324e521887bd074c937845e513375bfce3
Contents?: true
Size: 392 Bytes
Versions: 19
Compression:
Stored size: 392 Bytes
Contents
class LandscapeOnlyController < UIViewController def viewDidLoad UIApplication.sharedApplication.windows[0].rootViewController = FirstController.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