// // STNavView.h // BuguLive // // Created by 岳克奎 on 17/3/6. // Copyright © 2017年 xfg. All rights reserved. // #import #import "STBaseView.h" @class STNavView; @protocol STNavViewDelegate @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)iddelegate; @end