BasicViewController.h 603 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BasicViewController.h
  3. // RA Image
  4. //
  5. // Created by Jack on 2017/4/27.
  6. // Copyright © 2017年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "const.h"
  10. #import "config.h"
  11. #import "RAINetwork.h"
  12. #import "AppDelegate.h"
  13. #import "RAUtils.h"
  14. extern NSString *const LogoutNotification;
  15. @interface BasicViewController : UIViewController
  16. @property (nonatomic,strong,readonly) NSNotificationCenter *notificationCenter;
  17. - (id)userDefaultsValue:(NSString *)key;
  18. - (void)setUserDefaultsValue:(id)value forKey:(NSString *)key;
  19. - (void)userLogout:(NSNotification *)notification;
  20. @end