计算itemY ,少了判断最小itemY
CGFloat otherY;
if (colNum== 0) {
otherY = [self.eachColumnMaxHight[1] floatValue];
}else {
otherY = [self.eachColumnMaxHight[0] floatValue];
}
if (otherY <itemY) {
itemY = otherY;
}
iOS中瀑布流布局详解前段时间在逛淘宝的时候发现淘宝的商品界面的布局是瀑布流(我记得明明之前不是瀑布流的??)。刚好手上活忙完了,写了一个瀑布流的布局,简单的封装了下,以便日后使用??。其实说到底瀑布...