| 1234567891011121314151617181920212223242526272829 |
- //
- // YBBaseViewController.h
- // YBVideo
- //
- // Created by YB007 on 2019/11/5.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YBBaseViewController : UIViewController
- @property (nonatomic,strong) UIView *naviView;
- @property (nonatomic,strong) UIView *subNavi;
- @property (nonatomic,strong) UILabel *titleL;
- @property (nonatomic,strong) UIButton *leftBtn;
- @property (nonatomic,strong) UIButton *rightBtn;
- @property(nonatomic,strong)UIButton *rightLeftBtn; //只有私信页面显示这个按钮【全部已读】
- @property(nonatomic,strong)UIView *naviLine;
- - (void)clickNaviLeftBtn;
- - (void)clickNaviRightBtn;
- -(void)clickNaviRLBtn;
- @end
- NS_ASSUME_NONNULL_END
|