Nav apraksta

FKNavigtionCustomTitleView.m 503B

1234567891011121314151617181920212223242526
  1. //
  2. // CustomerView.m
  3. // FirstLink
  4. //
  5. // Created by ascii on 2017/11/13.
  6. // Copyright © 2017年 FirstLink. All rights reserved.
  7. //
  8. #import "FKNavigtionCustomTitleView.h"
  9. @implementation FKNavigtionCustomTitleView
  10. /*
  11. // Only override drawRect: if you perform custom drawing.
  12. // An empty implementation adversely affects performance during animation.
  13. - (void)drawRect:(CGRect)rect {
  14. // Drawing code
  15. }
  16. */
  17. - (CGSize)intrinsicContentSize {
  18. return CGSizeMake(UISCREENWIDTH - 120, 30);
  19. }
  20. @end