baseNav.m 642 B

1234567891011121314151617181920212223242526
  1. //
  2. // baseNav.m
  3. // switchPicChat
  4. //
  5. // Created by zzl on 16/4/26.
  6. // Copyright © 2016年 zzl. All rights reserved.
  7. //
  8. #import "baseNav.h"
  9. @interface baseNav ()
  10. @end
  11. @implementation baseNav
  12. - (void)viewDidLoad
  13. {
  14. [super viewDidLoad];
  15. // Do any additional setup after loading the view from its nib
  16. self.view.translatesAutoresizingMaskIntoConstraints = NO;
  17. NSLayoutConstraint* h = [NSLayoutConstraint constraintWithItem:self.view attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1 constant:64.0f];
  18. [self.view addConstraint:h];
  19. }
  20. @end