酷店

KDPNavBar.h 436B

123456789101112131415161718192021
  1. //
  2. // KDPNavBar.h
  3. // KuDianProject
  4. //
  5. // Created by 学丽 on 2019/7/4.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface KDPNavBar : UIView
  11. @property(nonatomic,strong)UILabel *navTitleLabel;
  12. @property(nonatomic,strong)UIView *lineView;
  13. -(void)setLineViewWithHidden:(BOOL)status;
  14. -(void)addleftReturnButton:(id)target selector:(SEL)selector;
  15. @end
  16. NS_ASSUME_NONNULL_END