JXMyFeedVc.h 698 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // JXMyFeedVc.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/5/23.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef enum {
  11. MsgVisible_public = 1,
  12. MsgVisible_private,
  13. MsgVisible_see,
  14. MsgVisible_nonSee,
  15. // MsgVisible_remind,
  16. }MsgVisibleX;
  17. @interface JXMyFeedVc : UIViewController
  18. {
  19. NSInteger _photoIndex;
  20. int _nSelMenu;
  21. NSMutableArray* _images;
  22. UIButton* _sendBtn;
  23. UITextView* _remark;
  24. UIScrollView* svImages;
  25. }
  26. @property (nonatomic) MsgVisibleX visible;
  27. @property (nonatomic) CLLocationCoordinate2D coor;
  28. //
  29. @property (nonatomic,assign) int maxImageCount;
  30. @end
  31. NS_ASSUME_NONNULL_END