0

我正在使用 aqgridview 创建一个类似 UI 的书架。

我可以很好地放置图像和标题(使用 aqgridview 中提供的 ImageDemo 示例)。

我想将“货架”图像放在图像标题所在的位置。(如http://itunes.apple.com/ca/app/rivet-for-ipad/id375055319?mt=8
我可以设置标题标签的背景颜色,但货架背景图像不会存在首先没有细胞的地方。
因此货架图像不会覆盖整个屏幕宽度。

如何拉伸货架图像?

谢谢

4

1 回答 1

1

我还在将 AQGridView 用于带书架的书架,我发现最好和最快的方法就是使用 UITableView。

创建一个 UITableView 并将货架图像添加为行(配置 UITableViewCell) 将 AQGridView backgroundView 设置为 UITableView _gridView.backgroundView = _tableView

您可以 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 使用不同的架子图形用于不同的架子

但我猜你现在已经找到方法了。

于 2011-09-30T16:23:58.947 回答