12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // JXMyFeedVc.h
- // shiku_im
- //
- // Created by 123 on 2020/5/23.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef enum {
- MsgVisible_public = 1,
- MsgVisible_private,
- MsgVisible_see,
- MsgVisible_nonSee,
- // MsgVisible_remind,
- }MsgVisibleX;
- @interface JXMyFeedVc : UIViewController
- {
- NSInteger _photoIndex;
- int _nSelMenu;
-
- NSMutableArray* _images;
- UIButton* _sendBtn;
- UITextView* _remark;
- UIScrollView* svImages;
- }
- @property (nonatomic) MsgVisibleX visible;
- @property (nonatomic) CLLocationCoordinate2D coor;
- //
- @property (nonatomic,assign) int maxImageCount;
- @end
- NS_ASSUME_NONNULL_END
|