| 1234567891011121314151617181920212223 |
- //
- // MMPopupWindow.h
- // MMPopupView
- //
- // Created by Ralph Li on 9/6/15.
- // Copyright © 2015 LJC. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MMPopupWindow : UIWindow
- @property (nonatomic, assign) BOOL touchWildToHide; // default is NO. When YES, popup views will be hidden when user touch the translucent background.
- @property (nonatomic, readonly) UIView* attachView;
- + (MMPopupWindow *)sharedWindow;
- /**
- * cache the window to prevent the lag of the first showing.
- */
- - (void) cacheWindow;
- @end
|