FullScreenView.m 346 B

1234567891011121314151617
  1. /* Copyright (C) 2012 IGN Entertainment, Inc. */
  2. #import "FullScreenView.h"
  3. @implementation FullScreenView
  4. - (id)init
  5. {
  6. if ((self = [super init])) {
  7. self.autoresizesSubviews = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
  8. self.backgroundColor = [UIColor blackColor];
  9. }
  10. return self;
  11. }
  12. @end