JTPopOverWindow.h 510 Bytes
//
//  JTPopupWindow.h
//  JobTalk
//
//  Created by Xummer on 14-5-20.
//  Copyright (c) 2014年 BST. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface JTPopOverWindow : UIWindow
@property (assign, nonatomic) UIStatusBarStyle statusBarStyle;
@property (strong, nonatomic) UIImage *backgroundImage;
@property (readwrite, nonatomic) BOOL vignetteBackground;

+ (instancetype)sharedInstance;
- (void)addToMainWindow:(UIView *)view;
- (void)removeView:(UIView *)view;
- (void)reduceAlphaIfEmpty;

@end