We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚫 If this template is not filled out your issue will be closed with no comment. 🚫
Hi;
I have following code for my UICollectionView:
//////////////////////// Item Recommendations Collection View in Second Container [self.itemRecommendationsCollectionView remakeConstraints:^(MASConstraintMaker *make) { make.height.equalTo(@750); make.left.equalTo(self.itemRecommendationsContainerView.left).with.offset(@45); make.right.equalTo(self.itemRecommendationsContainerView.right).with.offset(@-45); make.bottom.equalTo(self.itemRecommendationsContainerView.bottom).with.offset(@-150); make.top.equalTo(self.itemRecommendationsTitleLabel.bottom); }];
It is working fine. But I don't want to give constant height to my collection view.
If I change 750 to something else, it doesnt work. Height become 0.
What should I do for that?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
New Issue Checklist
🚫 If this template is not filled out your issue will be closed with no comment. 🚫
Issue Info
Issue Description
Hi;
I have following code for my UICollectionView:
It is working fine. But I don't want to give constant height to my collection view.
If I change 750 to something else, it doesnt work. Height become 0.
What should I do for that?
The text was updated successfully, but these errors were encountered: