STNavView.h 734 B

1234567891011121314151617181920212223
  1. //
  2. // STNavView.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/3/6.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STBaseView.h"
  10. @class STNavView;
  11. @protocol STNavViewDelegate<NSObject>
  12. @optional
  13. -(void)showLeftBtnEventResponseOfSTNavView:(STNavView *)stNavView;
  14. -(void)showRightBtnEventResponseOfSTNavView:(STNavView *)stNavView;
  15. @end
  16. @interface STNavView : STBaseView
  17. @property (weak, nonatomic) IBOutlet UIButton *leftBtn;
  18. @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
  19. @property (weak, nonatomic) IBOutlet UIView *sparatorView;//分割线
  20. @property (weak, nonatomic) IBOutlet UILabel *titleLab; //标题
  21. @property (weak, nonatomic)id<STNavViewDelegate>delegate;
  22. @end