說明 |
|
首次發(fā)布 |
2018年12月23日 |
最近更新 |
2019年01月15日 |
#import "NSLayoutConstraint+MZExtension.h"
#import <objc/runtime.h>
#define kLayoutConstraintScreenWidth [UIScreen mainScreen].bounds.size.width
#define kLayoutConstraintScale(x) (CGFloat)kLayoutConstraintScreenWidth / 375.0 * x
@implementation NSLayoutConstraint (MZExtension)
+ (void)load {
Method imp = class_getInstanceMethod([self class], @selector(initWithCoder:));
Method myImp = class_getInstanceMethod([self class], @selector(myInitWithCoder:));
method_exchangeImplementations(imp, myImp);
}
- (id)myInitWithCoder:(NSCoder *)aDecode {
[self myInitWithCoder:aDecode];
if (self) {
if (![self.identifier isEqualToString:@"333"]) {
self.constant = kLayoutConstraintScale(self.constant);
}
}
return self;
}
@end
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者