-2

我是电话编程的新手。

谁能告诉我如何像照片库一样在 4by4 缩略图中显示文档目录文件夹图像?所有图像都存储在一个数组中。

4

2 回答 2

1

尝试这个,

-> 你必须添加滚动视图,然后连接 IBOutlet

- (void)viewDidLoad
{
    [super viewDidLoad];

int nLastYPos = 0;

 for (int i=0; i<[arrImages count]; i++)
    {
        UIView *Viewthumbnail = [[UIView alloc] init];
        Viewthumbnail.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:[NSString StringByAppendingFormat:@"%@",[arrImages objectAtIndex:i]]]];
        Viewthumbnail.frame = CGRectMake(4+(i%4)*44,5+(i/4)*44, 42, 42);
        [scroll addSubview: Viewthumbnail];
        nLastYPos = btnthumbnail.frame.origin.y+44;
        [Viewthumbnail release];
    }
    if(nLastYPos>280)
        scroll.contentSize = CGSizeMake(scroll.frame.size.width,nLastYPos);
}
于 2013-02-18T15:09:24.223 回答
0

您可以通过创建具有您需要的宽度和高度的子视图然后将其添加到超级视图“scrollView”来实现

-(void) createGridView:(NSMutilbeArray *)array{
for(int i=0;i<array.count;i++)
{
  UIView *temp=[[UIView alloc] initWithFrame:CGRectMake(x,y,wi,hi)];//UIImageView
  [scrollView addSubView:temp];
}
}

你可以给每个视图标签来处理触摸动作sender.tag

于 2013-02-18T14:51:43.003 回答