NewNotifierBar.h 555 B

12345678910111213141516171819202122
  1. //
  2. // NewNotifierBar.h
  3. // MingMen
  4. //
  5. // Created by 罗云飞 on 2017/3/26.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class NewNotifier;
  10. @class NewNotifierBar;
  11. typedef void(^NewNotifierBarClickBlock)(NSString *name,NSString *detail,NewNotifier *notifier);
  12. @interface NewNotifierBar : UIWindow
  13. {
  14. NewNotifierBarClickBlock _notifierBarClickBlock;
  15. }
  16. - (void)show:(NSString*)note name:(NSString*)appName icon:(UIImage*)appIcon;
  17. - (void)handleClickAction:(NewNotifierBarClickBlock)notifierBarClickBlock;
  18. @end