TopicVC.h 804 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //话题详情
  2. #import <UIKit/UIKit.h>
  3. @interface TopicVC : UIViewController
  4. ///**
  5. // 导航右按钮。可以弹3个按钮。如果是别人的话题0。就是举报。收藏。
  6. // 如果是自己的1,就是删除。收藏。
  7. // */
  8. //@property(nonatomic,assign)NSInteger type;
  9. /**
  10. 我的收藏里面只有一个topicId 利用它来查
  11. */
  12. @property(nonatomic,strong) NSString *topicId;
  13. ///**
  14. // 话题所属人的userID 。
  15. // */
  16. @property(nonatomic,strong) NSString *userId;
  17. ///**驾考社区的列表的cell的model。
  18. // */
  19. //@property(nonatomic,strong)NSDictionary *preDict;
  20. /**通过设置这个为YES,使VC一加载就显示textView;
  21. default is NO
  22. */
  23. @property(assign)BOOL textViewActive;
  24. /**表明是推送过来的
  25. */
  26. @property (nonatomic, assign) BOOL isNotification;
  27. @end