PhotoListViewController.h 405 B

123456789101112131415161718
  1. //
  2. // PhotoListViewController.h
  3. // RA Image
  4. //
  5. // Created by Jack on 2017/5/4.
  6. // Copyright © 2017年 USAI. All rights reserved.
  7. //
  8. #import "BasicViewController.h"
  9. @class BasicModeViewController;
  10. @interface PhotoListViewController : BasicViewController
  11. @property (nonatomic,strong) NSMutableArray <NSMutableDictionary *> *photos;
  12. @property (nonatomic,weak) BasicModeViewController *modeVC;
  13. @end