icarousel 图像大小是多少
Posted
技术标签:
【中文标题】icarousel 图像大小是多少【英文标题】:What is the icarousel image size 【发布时间】:2013-07-17 09:15:55 【问题描述】:我想使用 icarousel 显示图像,但我不知道图像大小,因此它不会显示它被挤压或类似的东西。我想裁剪它以使其完美贴合。有人知道图片大小吗?
【问题讨论】:
您可以根据自己的需求更改图片大小。 【参考方案1】:您可以在此处设置视图大小,
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index
UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%@",[menuViews objectAtIndex:index]]];
UIView* _reflectionView =[[[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, image.size.width, image.size.height)] autorelease];
UIImageView *imgview = [[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, image.size.width, image.size.height)] autorelease];
imgview.image = image;
[_reflectionView addSubview:imgview];
return _reflectionView;
【讨论】:
以上是关于icarousel 图像大小是多少的主要内容,如果未能解决你的问题,请参考以下文章
在 Swift 的 iCarousel 中预览 UIWebView
在 iOS 的 icarousel 中使用 AsyncImageView 的问题