NSBundle+MJRefresh.h 497 B

123456789101112131415161718192021
  1. //
  2. // NSBundle+MJRefresh.h
  3. // MJRefreshExample
  4. //
  5. // Created by MJ Lee on 16/6/13.
  6. // Copyright © 2016年 小码哥. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSBundle (MJRefresh)
  11. + (instancetype)mj_refreshBundle;
  12. + (UIImage *)mj_arrowImage;
  13. + (UIImage *)mj_trailArrowImage;
  14. + (NSString *)mj_localizedStringForKey:(NSString *)key value:(nullable NSString *)value;
  15. + (NSString *)mj_localizedStringForKey:(NSString *)key;
  16. @end
  17. NS_ASSUME_NONNULL_END