gpt4 book ai didi

ios - iPod 中的 CollectionView 问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:10:00 26 4
gpt4 key购买 nike

<分区>

我的项目中有 Collectionview...它在 ipad 和 iphone 中正常工作..但在 ipod 中不行...ipod id IOS7 的版本..任何人都可以告诉我问题是什么..我必须做什么做...我的代码如下

     _collectionView=[[UICollectionView alloc] initWithFrame:CGRectMake(-5, 0,       self.view.bounds.size.width, height) collectionViewLayout:layout];
[_collectionView setDataSource:self];
[_collectionView setDelegate:self];
[_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellIdentifier"];
[_collectionView setBackgroundColor:[UIColor whiteColor]];
[_collectionView setShowsHorizontalScrollIndicator:NO];
[_collectionView setShowsVerticalScrollIndicator:NO];

[self.view addSubview:_collectionView];


- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return arrayMonths.count;
}

// The cell that is returned must be retrieved from a call to - dequeueReusableCellWithReuseIdentifier:forIndexPath:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cellIdentifier" forIndexPath:indexPath];
for(UIView *subview in [cell subviews]) {
[subview removeFromSuperview];
}
MonthView *month=[arrayMonths objectAtIndex:indexPath.row];
if ([month.strMonthName isEqualToString:@"February"]) {
UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(0, -5, cell.frame.size.width, 40)];
[label setText:[NSString stringWithFormat:@"%@ - %@",[[NSUserDefaults standardUserDefaults] valueForKey:@"KiCalName"],month.strYear]];
label.textAlignment=NSTextAlignmentCenter;
[label setFont:[UIFont fontWithName:@"AmericanTypewriter-Bold" size:12.0]];
[cell addSubview:label];
[month setFrame:CGRectMake(0, 35, month.frame.size.width, month.frame.size.height)];
}else if([month.strMonthName isEqualToString:@"January"] || [month.strMonthName isEqualToString:@"March"]){
[month setFrame:CGRectMake(0, 35, month.frame.size.width, month.frame.size.height)];
}
[cell addSubview:month];
[hud hide:YES];
return cell;
}

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
MonthView *monthOld=[arrayMonths objectAtIndex:indexPath.row];
CGRect rectNew=CGRectMake(monthOld.frame.origin.x, monthOld.frame.origin.y, monthOld.frame.size.width+40, monthOld.frame.size.height+40);
MonthView *month=[[MonthView alloc]initWithFrame:monthOld.frame andYear:monthOld.strYear andMonth:monthOld.strMonthName andNoOfDays:monthOld.noOfDays andArrayOffDays:monthOld.arrayOFF andArrayOnDays:monthOld.arrayONN];
[month setBackgroundColor:[UIColor whiteColor]];
UIView *view=[[UIView alloc]initWithFrame:rectNew];
[view setBackgroundColor:[UIColor whiteColor]];
[month setFrame:CGRectMake(20, 20, month.frame.size.width, month.frame.size.height)];
[view addSubview:month];
[[KGModal sharedInstance] setShowCloseButton:NO];
[[KGModal sharedInstance] showWithContentView:view andAnimated:NO];
}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{

MonthView *month=[arrayMonths objectAtIndex:indexPath.row];
NSLog(@"month name %@",month.strMonthName);
NSLog(@"month %@",month);
CGSize height;
height=CGSizeMake(105, 155);
if ([month.strMonthName isEqualToString:@"January"]) {
height=CGSizeMake(105, 190);
NSLog(@"called");
}else if ([month.strMonthName isEqualToString:@"February"]){
height=CGSizeMake(105, 190);
NSLog(@"called");
}else if ([month.strMonthName isEqualToString:@"March"]){
height=CGSizeMake(105, 190);
NSLog(@"called");
}else{

}
return height;
}


-(CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
{
return 1;
}

-(CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
{
return 1;
}

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