12345678910111213141516171819202122232425262728293031323334353637383940 |
- //话题详情
- #import <UIKit/UIKit.h>
- @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
|