如何在iphone的缩略图中显示数组图像

时间:2013-02-18 14:41:38

标签: iphone objective-c

我是手机编程的新手。

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

2 个答案:

答案 0 :(得分:1)

试试这个,

- >您必须添加scrollview,然后连接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);
}

答案 1 :(得分:0)

您可以通过创建具有宽度和高度的子视图来创建它,然后将其添加到superview“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

为每个视图标记提供触摸操作