美文网首页
View横屏

View横屏

作者: 王欣12138 | 来源:发表于2016-06-29 08:23 被阅读12次

//允许屏幕旋转

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation

{

returnYES;

}

- (NSUInteger)supportedInterfaceOrientations

{

returnUIInterfaceOrientationMaskLandscape;

}

- (id)initWithCoder:(NSCoder*)aDecoder

{

if(self= [superinitWithCoder:aDecoder]) {

self.autoresizesSubviews=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;

self.backgroundColor= [UIColorblackColor];

}

returnself;

}

相关文章

网友评论

      本文标题:View横屏

      本文链接:https://www.haomeiwen.com/subject/vfrndttx.html