ChangeTopicVC.h 470 B

1234567891011121314151617181920212223
  1. //
  2. // ChangeTopicVC.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/25.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChangeTopicVC : BaseViewController
  11. @property (nonatomic, assign) NSInteger topicId;
  12. @property (strong, nonatomic) NSDictionary * dataDict;
  13. @property (nonatomic, copy) void(^upDateBlock)(void);
  14. + (ChangeTopicVC *)initChangeTopicVC;
  15. @end
  16. NS_ASSUME_NONNULL_END