HKViewController.h 485 B

123456789101112131415161718192021
  1. //
  2. // HKViewController.h
  3. // HKBaseNavigationDemo
  4. //
  5. // Created by hukaiyin on 16/6/27.
  6. // Copyright © 2016年 hukaiyin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface HKViewController : UIViewController
  10. - (void)creaBackBtnWithTitle:(NSString *)title;
  11. - (void)creatLeftBtnWithTitle:(NSString *)title;
  12. - (void)creaRightBtnWithTitle:(NSString *)title;
  13. - (void)backBtnTUI:(UIButton *)btn;
  14. - (void)leftBtnTUI:(UIButton *)btn;
  15. - (void)rightBtnTUI:(UIButton *)btn;
  16. @end