MBProgressHUD+Add.h 375 B

12345678910111213141516
  1. //
  2. // MBProgressHUD+Add.h
  3. //
  4. // Created by mj on 13-4-18.
  5. // Copyright (c) 2013 itcast. All rights reserved.
  6. //
  7. #import "MBProgressHUD.h"
  8. @interface MBProgressHUD (Add)
  9. + (void)showError:(NSString *)error toView:(UIView *)view;
  10. + (void)showSuccess:(NSString *)success toView:(UIView *)view;
  11. + (MBProgressHUD *)showMessag:(NSString *)message toView:(UIView *)view;
  12. @end