CustomAlertView.h 907 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CustomAlertView.h
  3. // NoteLedge for Mac
  4. //
  5. // Created by LiuZhiXun on 16/4/27.
  6. // Copyright © 2016年 kdanmobile. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. typedef NS_ENUM(NSUInteger, KMCustomAlertStyle) {
  10. KMCustomAlertStyle_Black,
  11. KMCustomAlertStyle_Blue,
  12. };
  13. @interface CustomAlertView : NSView
  14. //+ (CustomAlertView *)alertViewWithMessage:(NSString *)message
  15. // fromView:(NSView *)supverView;
  16. + (CustomAlertView *)alertViewWithMessage:(NSString *)message
  17. fromView:(NSView *)supverView
  18. withStyle:(KMCustomAlertStyle)style;
  19. + (CustomAlertView *)alertViewWithMessage:(NSString *)message
  20. fromView:(NSView *)supverView
  21. withStyle:(KMCustomAlertStyle)style
  22. backgroundColor:(NSColor *)color;
  23. @end