25 lines
439 B
C
25 lines
439 B
C
|
//
|
||
|
// BlockBackground.h
|
||
|
// arrived
|
||
|
//
|
||
|
// Created by Gustavo Ambrozio on 29/11/11.
|
||
|
// Copyright (c) 2011 N/A. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface BlockBackground : UIWindow
|
||
|
|
||
|
+ (BlockBackground *) sharedInstance;
|
||
|
|
||
|
- (void)addToMainWindow:(UIView *)view;
|
||
|
- (void)reduceAlphaIfEmpty;
|
||
|
- (void)removeView:(UIView *)view;
|
||
|
|
||
|
- (UIInterfaceOrientation)orientation;
|
||
|
- (CGFloat)statusBarHeight;
|
||
|
|
||
|
- (void)sizeToFill;
|
||
|
|
||
|
@end
|