Skip to content
New issue

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

not Adaptive altitude height issuses? #1192

Closed
2 tasks
fndppx opened this issue Jun 13, 2018 · 1 comment
Closed
2 tasks

not Adaptive altitude height issuses? #1192

fndppx opened this issue Jun 13, 2018 · 1 comment
Labels

Comments

@fndppx
Copy link

fndppx commented Jun 13, 2018

New issue checklist

12314

this issuses?bug?

General information

  • IGListKit version:3.2.0
  • iOS version(s):
  • CocoaPods/Carthage version:
  • Xcode version:
  • Devices/Simulators affected:
  • Reproducible in the demo project? (Yes/No):
  • Related issues:

Debug information

Adaptive altitude height flicker issuses

core code

  • (UICollectionViewLayoutAttributes *)preferredLayoutAttributesFittingAttributes:(UICollectionViewLayoutAttributes *)layoutAttributes{
    [self setNeedsLayout];
    [self layoutIfNeeded];
    CGSize size = [self.contentView systemLayoutSizeFittingSize:layoutAttributes.size];
    CGRect newFrame = layoutAttributes.frame;
    // newFrame.size.width = ceil(size.width);
    newFrame.size.height = ceil(size.height);
    layoutAttributes.frame = newFrame;
    return layoutAttributes;
    }
# Please include debug logs using the following lldb command:
po [IGListDebugger dump]
@rnystrom
Copy link
Contributor

Looks like this is using self-sizing cells. Check out #516 where we are tracking everything related to self sizing.

Sent with GitHawk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants