ZGAlert.h 410 B

1234567891011121314
  1. //
  2. // ZGAlert.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 15/3/29.
  6. // Copyright (c) 2015年 UUT. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface ZGAlert : NSObject
  10. +(void) alertWithMessage:(NSString *)msg window:(NSWindow *)window;
  11. +(void) alertWithMessage:(NSString *)msg window:(NSWindow *)window delegate:(id)delegate;
  12. +(void) alertWithError:(NSString *)errorMsg window:(NSWindow *)window;
  13. @end