| 1234567891011121314151617181920212223 |
- //
- // STNavView.h
- // BuguLive
- //
- // Created by 岳克奎 on 17/3/6.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "STBaseView.h"
- @class STNavView;
- @protocol STNavViewDelegate<NSObject>
- @optional
- -(void)showLeftBtnEventResponseOfSTNavView:(STNavView *)stNavView;
- -(void)showRightBtnEventResponseOfSTNavView:(STNavView *)stNavView;
- @end
- @interface STNavView : STBaseView
- @property (weak, nonatomic) IBOutlet UIButton *leftBtn;
- @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
- @property (weak, nonatomic) IBOutlet UIView *sparatorView;//分割线
- @property (weak, nonatomic) IBOutlet UILabel *titleLab; //标题
- @property (weak, nonatomic)id<STNavViewDelegate>delegate;
- @end
|