| 12345678910111213141516171819202122 |
- //
- // NewNotifierBar.h
- // MingMen
- //
- // Created by 罗云飞 on 2017/3/26.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class NewNotifier;
- @class NewNotifierBar;
- typedef void(^NewNotifierBarClickBlock)(NSString *name,NSString *detail,NewNotifier *notifier);
- @interface NewNotifierBar : UIWindow
- {
- NewNotifierBarClickBlock _notifierBarClickBlock;
- }
- - (void)show:(NSString*)note name:(NSString*)appName icon:(UIImage*)appIcon;
- - (void)handleClickAction:(NewNotifierBarClickBlock)notifierBarClickBlock;
- @end
|