Peter Jensen
Peter Jensen
The problem with cells being loaded from a storyboard is that the cell's width does not initially correspond to the tableView's width (which affects the label's `preferredMaxLayoutWidth`). Reloading simply reuses...
Hi Roy. Thanks for the feedback! There are some commented out `#ifdef DEBUG` statements in CloudLayoutOperation.m and CloudViewController.m. If you uncomment them, bounding boxes will be drawn around individual glyphs...
The problem is in `addGlyphBoundingRectsToQuadTreeForWord:` ``` CGFloat glyphX = lineOrigin.x + glyphPosition.x + CGRectGetMinX(glyphBounds); CGFloat glyphY = CGRectGetHeight(horizontalFrame) - (lineOrigin.y + glyphPosition.y + CGRectGetMaxY(glyphBounds)); ``` From the screenshot, X appears...