gpt4 book ai didi

ios - 如何调整 iCarouselTypeLinear View 移动到顶部的框架

转载 作者:行者123 更新时间:2023-11-28 21:15:09 25 4
gpt4 key购买 nike

如何将 linearType ICarousel View 中的 containerView 的框架从原点调整到所需的高度,但它固定在 View 的中间,如图所示,因为我尝试按照下面的代码设置框架。

- (UIView *)carousel:(__unused iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(UIView *)view  {    
UILabel *label = nil;
//create new view if no view is available for recycling
// if (view == nil)
// {
view = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, [UIObjects widthOfTheElement:267], [UIObjects heightOfTheElement:172])];
((UIImageView *)view).image = [UIImage imageNamed:[self.imagesArray objectAtIndex:index]];
// view.contentMode = UIViewContentModeCenter;
// view.backgroundColor=[UIColor yellowColor];
label = [[UILabel alloc] initWithFrame:view.bounds];
label.backgroundColor = [UIColor clearColor];
label.textAlignment = NSTextAlignmentCenter;
label.font = [label.font fontWithSize:50];
label.tag = 1;
[view addSubview:label];
if (index==0)
{
label.text = @"ramki";
}
else
{
}
return view;
}

Pleae click here to view image .

最佳答案

iCarousel 具有多种设置,可让您调整轮播的位置、3D 角度和其他参数。有一个设置可让您在其 View 中上下移动轮播。检查文档。

关于ios - 如何调整 iCarouselTypeLinear View 移动到顶部的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41548036/

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