gpt4 book ai didi

ios - 模糊 ICarousel 中的图像

转载 作者:行者123 更新时间:2023-11-29 01:23:30 24 4
gpt4 key购买 nike

我正在使用 iCarouselTypeCoverFlow我的应用程序中的库。我想模糊背面图像。

我可以在 viewForItemAtIndex 中模糊图像。但在滚动时我无法更新。这是我的 viewForItemAtindex

代码
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index
{

image = [items objectAtIndex:index];

button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, image.size.width, image.size.height)];

[button setBackgroundImage:image forState:UIControlStateNormal];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
button.titleLabel.font = [button.titleLabel.font fontWithSize:50];
button.tag=index;

//NSLog(@"%d %d",carousel.currentItemIndex,index);
if (selectedindex == index) {

[button setBackgroundImage:[items objectAtIndex:index] forState:UIControlStateNormal];

}
else {

[button setBackgroundImage:[self blurredImageWithImage:[items objectAtIndex:index]] forState:UIControlStateNormal];

}

return button;

}

这是我的滚动

- (void)carouselDidScroll:(iCarousel *)carousel
{
NSInteger current = (carousel.currentItemIndex);
// NSLog(@"%d", current);


NSInteger nextIndex = (carousel.currentItemIndex + 1) % carousel.numberOfItems;
// NSLog(@"%d", nextIndex);



NSInteger prevIndex = (carousel.currentItemIndex + carousel.numberOfItems - 1) % carousel.numberOfItems;
// NSLog(@"%d", prevIndex);


}

如有任何建议或帮助,我们将不胜感激。

最佳答案

所以我终于得到了答案。绝对不希望这样。但不幸的是,答案是,

nicklockwood answer

关于ios - 模糊 ICarousel 中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34310702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com