NSLayoutConstraint+MT.m 784 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // NSLayoutConstraint+MT.m
  3. // SeafoodAccount
  4. //
  5. // Created by Simon on 2019/8/19.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import "NSLayoutConstraint+MT.h"
  9. #import <objc/runtime.h>
  10. @implementation NSLayoutConstraint (MT)
  11. + (void)load{
  12. Method imp = class_getInstanceMethod([self class], @selector(initWithCoder:));
  13. Method myImp = class_getInstanceMethod([self class], @selector(myInitWithCoder:));
  14. method_exchangeImplementations(imp, myImp);
  15. }
  16. - (id)myInitWithCoder:(NSCoder*)aDecode
  17. {
  18. [self myInitWithCoder:aDecode];
  19. if (self){
  20. if(![self.identifier isEqualToString:@"1314"]) //只对符合条件的约束进行适配
  21. {
  22. self.constant = kNumFrom375(self.constant);
  23. }
  24. }
  25. return self;
  26. }
  27. @end