//话题详情 #import @interface TopicVC : UIViewController ///** // 导航右按钮。可以弹3个按钮。如果是别人的话题0。就是举报。收藏。 // 如果是自己的1,就是删除。收藏。 // */ //@property(nonatomic,assign)NSInteger type; /** 我的收藏里面只有一个topicId 利用它来查 */ @property(nonatomic,strong) NSString *topicId; ///** // 话题所属人的userID 。 // */ @property(nonatomic,strong) NSString *userId; ///**驾考社区的列表的cell的model。 // */ //@property(nonatomic,strong)NSDictionary *preDict; /**通过设置这个为YES,使VC一加载就显示textView; default is NO */ @property(assign)BOOL textViewActive; /**表明是推送过来的 */ @property (nonatomic, assign) BOOL isNotification; @end