1

是否可以在 TTLauncherView 中显示 4 行而不是默认的 3 行?

4

2 回答 2

1

如果您始终使用相同的行数,则可以使用类别修改行高:

@interface TTLauncherView(FourthRow)

@end


@implementation TTLauncherView(FourthRow)

- (CGFloat)rowHeight {
  int rows = 4;
  return round(_scrollView.height / rows);
}

@end
于 2011-05-01T22:34:52.217 回答
0

对我来说,TTLauncherView 中的默认行数是 4,所以我不确定为什么你只看到 3。或者你的意思是列(默认为 3)?

无论哪种方式,这两个值都可以通过 columnCount 和 rowCount 属性进行配置:

TTLauncherView launcher = [[[TTLauncherView alloc] initWithFrame:self.view.bounds] autorelease];
launcher.rowCount = 3;
launcher.columnCount = 3;

应该给你一个 3 行和列的

于 2010-12-02T08:10:54.387 回答