JXAnnounceViewController.h 666 B

1234567891011121314151617181920212223242526
  1. //
  2. // JXAnnounceViewController.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2018/8/17.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import "JXTableViewController.h"
  9. @class searchData;
  10. @interface JXAnnounceViewController : JXTableViewController
  11. @property(nonatomic,weak) id delegate;
  12. @property(nonatomic,strong) NSString* value;
  13. @property(assign) SEL didSelect;
  14. @property (nonatomic, assign) BOOL isLimit;
  15. @property (nonatomic, assign) NSInteger limitLen;
  16. @property (nonatomic, strong) UITextView *name;
  17. @property (nonatomic, strong) NSMutableArray *dataArray;
  18. @property (nonatomic, assign) BOOL isAdmin;
  19. @property (nonatomic,strong) roomData *room;
  20. @end