IG
Size: a a a
AG
AG
ВК
EG
ВК
AG
AG
ВК
AG
KS
ВК
IG
IG
KS
IG
IG
- (void)pinOnSuperview:(UIView *)superview closure:(EdgeClosure)closure
{
[superview addSubview:self];
[self setTranslatesAutoresizingMaskIntoConstraints:NO];
[NSLayoutConstraint activateConstraints:closure(self, superview)];
}
IG
[self.copyrightLabel pinOnSuperview:self.collectionView.backgroundView closure:^NSArray<NSLayoutConstraint *> *(UIView *view, UIView *superview) {
float bottomPadding = [TRUIKit scrollViewTabBarInset] + 8.0f;
return @[
[view.centerXAnchor constraintEqualToAnchor:superview.centerXAnchor],
[view.bottomAnchor constraintEqualToAnchor:superview.bottomAnchor constant:-bottomPadding],
];
}];
ДГ