YBBaseViewController.h 734 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YBBaseViewController.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/11/5.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YBBaseViewController : UIViewController
  11. @property (nonatomic,strong) UIView *naviView;
  12. @property (nonatomic,strong) UIView *subNavi;
  13. @property (nonatomic,strong) UILabel *titleL;
  14. @property (nonatomic,strong) UIButton *leftBtn;
  15. @property (nonatomic,strong) UIButton *rightBtn;
  16. @property(nonatomic,strong)UIButton *rightLeftBtn; //只有私信页面显示这个按钮【全部已读】
  17. @property(nonatomic,strong)UIView *naviLine;
  18. - (void)clickNaviLeftBtn;
  19. - (void)clickNaviRightBtn;
  20. -(void)clickNaviRLBtn;
  21. @end
  22. NS_ASSUME_NONNULL_END