CollectionView求助

今天在使用CollectionView寫(xiě)一個(gè)類(lèi)似網(wǎng)頁(yè)信息的demo的時(shí)候,發(fā)現(xiàn)CPU使用達(dá)到了100%, 求助一下大家, 看怎么解決, 代碼如下:
這個(gè)是類(lèi)似網(wǎng)易新聞的樣子,出錯(cuò)也是在這個(gè)里面

#pragma mark iCarouselDelegate, iCarouselDataSource
- (NSInteger)numberOfItemsInCarousel:(iCarousel *)carousel {
    return 3;
}
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(nullable UIView *)view {`

    SYStickHeaderWaterFallLayout *cvLayout = [[SYStickHeaderWaterFallLayout alloc] init];
    cvLayout.delegate = self;
    cvLayout.stickyHeader = YES;
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, kScreen_Width, kScreen_Height) collectionViewLayout:cvLayout];
    collectionView.delegate = self;
    collectionView.dataSource = self;
    collectionView.backgroundColor = [UIColor whiteColor];
    collectionView.tag = index + 100;
    switch (collectionView.tag) {
        case 100:
            collectionView.backgroundColor = [UIColor redColor];
            break;
        case 101:
            collectionView.backgroundColor = [UIColor greenColor];
            break;
        case 102:
            collectionView.backgroundColor = [UIColor blackColor];
            break;
            
        default:
            break;
    }`
    
    // 下拉重新加載
    collectionView.mj_header = [MJRefreshHeader headerWithRefreshingBlock:^{
        
        showPage = 1;
        switch (collectionView.tag) {
            case 100:
                [self.xgLiveFocus removeAllObjects];
                break;
            case 101:
                [self.xgLiveNears removeAllObjects];
                break;
            case 102:
                [self.xgLiveHots removeAllObjects];
                break;
            default:
                break;
        }
        
        [self requestHomePageList:showPage refreshType:@"header" liveType:collectionView.tag headerCallBack:^(BOOL success, id responseObject, AppError *error) {
//            dispatch_async(dispatch_get_main_queue(), ^{
                if (success) {
                    switch (collectionView.tag) {
                        case 100:
                            [self.xgLiveFocus addObjectsFromArray:responseObject];
                            break;
                        case 101:
                            [self.xgLiveNears addObjectsFromArray:responseObject];
                            break;
                        case 102:
                            [self.xgLiveHots addObjectsFromArray:responseObject];
                        default:
                            break;
                    }
                    [collectionView reloadData];
                }
                [collectionView.mj_header endRefreshing];
//            });
        } footerCallBlock:^(BOOL success, id responseObject, AppError *error) {
        }];
    }];
    // 上拉加載更多
    collectionView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
        
        showPage += 1;
        [self requestHomePageList:showPage refreshType:@"footer" liveType:collectionView.tag headerCallBack:^(BOOL success, id responseObject, AppError *error) {
        } footerCallBlock:^(BOOL success, id responseObject, AppError *error) {
            dispatch_async(dispatch_get_main_queue(), ^{
                if (success) {
                    switch (collectionView.tag) {
                        case 100:
                            [self.xgLiveFocus addObjectsFromArray:responseObject];
                            break;
                        case 101:
                            [self.xgLiveNears addObjectsFromArray:responseObject];
                            break;
                        case 102:
                            [self.xgLiveHots addObjectsFromArray:responseObject];
                        default:
                            break;
                    }
                    [collectionView reloadData];
                }
                [collectionView.mj_footer endRefreshing];
            });
        }];
    }];
    [collectionView registerNib:[UINib nibWithNibName:xgHomeCollectionCell bundle:nil] forCellWithReuseIdentifier:xgHomeCollectionCell];
    [collectionView reloadData];
    [collectionView.mj_header beginRefreshing];
    return collectionView;
}

- (void)carouselDidEndDecelerating:(iCarousel *)carousel
{
    //    [self updateScrollViewButtonForIndex:carousel.currentItemIndex];
    [self setNavScrollViewsForIndex:carousel.currentItemIndex];
}

- (CATransform3D)carousel:(__unused iCarousel *)carousel itemTransformForOffset:(CGFloat)offset baseTransform:(CATransform3D)transform
{
    //implement 'flip3D' style carousel
    transform = CATransform3DRotate(transform, M_PI / 8.0f, 0.0f, 1.0f, 0.0f);
    return CATransform3DTranslate(transform, 0.0f, 0.0f, offset * self.icarouselView.itemWidth);
}

- (CGFloat)carousel:(__unused iCarousel *)carousel valueForOption:(iCarouselOption)option withDefault:(CGFloat)value
{
    //customize carousel display
    switch (option)
    {
        case iCarouselOptionWrap:
        {
            //循環(huán)
            return NO;
        }
        case iCarouselOptionSpacing:
        {
            //add a bit of spacing between the item views
            return value ;//* 1.05f;
        }
        case iCarouselOptionFadeMax:
        {
            if (self.icarouselView.type == iCarouselTypeCustom)
            {
                //set opacity based on distance from camera
                return 0.0f;
            }
            return value;
        }
        case iCarouselOptionShowBackfaces:
        case iCarouselOptionRadius:
        case iCarouselOptionAngle:
        case iCarouselOptionArc:
        case iCarouselOptionTilt:
        case iCarouselOptionCount:
        case iCarouselOptionFadeMin:
        case iCarouselOptionFadeMinAlpha:
        case iCarouselOptionFadeRange:
        case iCarouselOptionOffsetMultiplier:
        case iCarouselOptionVisibleItems:
        {
            return value;
        }
    }
}

#pragma mark SYStickHeaderWaterFallDelegate
// 返回所在section的每個(gè)item的width(一個(gè)section只有一個(gè)width)
- (CGFloat)collectionView:(UICollectionView *)collectionView
                   layout:(SYStickHeaderWaterFallLayout *)collectionViewLayout
    widthForItemInSection:(NSInteger )section; {
    return (kDeviceWidth - 30) / 2;
}

// 返回所在indexPath的每個(gè)item的height(每個(gè)item有一個(gè)height蜀铲,要不然怎么是瀑布流??)
- (CGFloat)collectionView:(nonnull UICollectionView *)collectionView
                   layout:(nonnull SYStickHeaderWaterFallLayout *)collectionViewLayout
 heightForItemAtIndexPath:(nonnull NSIndexPath *)indexPath {

    LivesModel *model;
    switch (collectionView.tag) {
        case 100:
            model = [self.xgLiveFocus objectAtIndex:indexPath.item];
            break;
        case 101:
            model = [self.xgLiveNears objectAtIndex:indexPath.item];
            break;
        case 102:
            model = [self.xgLiveHots objectAtIndex:indexPath.item];
            break;
        default:
            break;
    }
    return [self calculateImageHeigthFor:model.liveLogoWidth height:model.liveLogoHeight];;
}

- (CGFloat)calculateImageHeigthFor:(CGFloat)width height:(CGFloat)height {
    return ((kDeviceWidth - 30) /2 ) * height / width;
}

CollectionView里面其實(shí)也沒(méi)什么東西, 這些正常, 就是上面的代碼出了問(wèn)題, 求助:

#pragma mark CollectionView Delegate,DataSource
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
//    [collectionView.collectionViewLayout invalidateLayout];
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    NSInteger itemCount;
    switch (collectionView.tag) {
        case 100:
            itemCount = self.xgLiveFocus.count;
            break;
        case 101:
            itemCount = self.xgLiveNears.count;
            break;
        case 102:
            itemCount = self.xgLiveHots.count;
        default:
            break;
    }
    return itemCount;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    
    HomeCollectionCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:xgHomeCollectionCell forIndexPath:indexPath];
    switch (collectionView.tag) {
        case 100:
            cell.model = self.xgLiveFocus[indexPath.item];
            break;
        case 101:
            cell.model = self.xgLiveNears[indexPath.item];
            break;
        case 102:
            cell.model = self.xgLiveHots[indexPath.item];
            break;
        default:
            break;
    }
    return cell;
}

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    index = indexPath.row;
    self.isAnchor = NO;
    switch (collectionView.tag) {
        case 100:
            [self performSegueWithIdentifier:@"LivingIdentifier" sender:self.xgLiveFocus[indexPath.item]];
            break;
        case 101:
            [self performSegueWithIdentifier:@"LivingIdentifier" sender:self.xgLiveNears[indexPath.item]];
            break;
        case 102:
            [self performSegueWithIdentifier:@"LivingIdentifier" sender:self.xgLiveHots[indexPath.item]];
            break;
        default:
            break;
    }   
}

下面是關(guān)于HTTP請(qǐng)求這塊的代碼: 其實(shí)也就是對(duì)上下拉刷新block的一個(gè)回調(diào)的方法:

-(void)requestHomePageList:(NSInteger )page refreshType:(NSString *)refreshtype liveType:(XGLivingType )livingType headerCallBack:(HTTPHeaderBlock)headerBlock footerCallBlock:(HTTPFooterBlock)footerBlock  {
    
    NSString *memberID = [Login getMember_ID];
    if (memberID == nil) {
        [NSObject showHudTipString:@"您還未登入, 請(qǐng)您先登入!" delay:2.0];
        return;
    }
    
    NSDictionary *dict = @{@"pageIndex":[NSNumber numberWithInteger:page],
                           @"longitude":@(113.232970),
                           @"latitude":@(23.398850),
                           @"isLive":[NSNumber numberWithBool:true],
                           @"memberId":[Login getMember_ID]
                           };
    
    [XGAPI getXGLivingList:dict livingType:livingType CallBack:^(BOOL success, id responseObject, AppError *error) {
        if (success) {
            NSLog(@"responseObject :%@",responseObject);
            if (responseObject) {
                if ([refreshtype isEqualToString:@"header"]) {
                    if (headerBlock) {
                        headerBlock(success, responseObject, error);
                    }
                } else {
                    footerBlock(success, responseObject, error);
                }
            }
        } else {
            if ([refreshtype isEqualToString:@"header"]) {
                headerBlock(success, responseObject, error);
            } else {
                footerBlock(success, responseObject, error);
            }
        }
    }];
}

大家?guī)臀铱纯? 我這是什么問(wèn)題, 謝謝大家了!

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末赵讯,一起剝皮案震驚了整個(gè)濱河市格嗅,隨后出現(xiàn)的幾起案子译秦,更是在濱河造成了極大的恐慌米愿,老刑警劉巖兰怠,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件擦酌,死亡現(xiàn)場(chǎng)離奇詭異闺鲸,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)赛糟,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)派任,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人璧南,你說(shuō)我怎么就攤上這事掌逛。” “怎么了司倚?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵豆混,是天一觀(guān)的道長(zhǎng)。 經(jīng)常有香客問(wèn)我动知,道長(zhǎng)皿伺,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任盒粮,我火速辦了婚禮鸵鸥,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己妒穴,他們只是感情好宋税,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著讼油,像睡著了一般杰赛。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上矮台,一...
    開(kāi)封第一講書(shū)人閱讀 48,970評(píng)論 1 284
  • 那天乏屯,我揣著相機(jī)與錄音,去河邊找鬼嘿架。 笑死瓶珊,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的耸彪。 我是一名探鬼主播伞芹,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼蝉娜!你這毒婦竟也來(lái)了唱较?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤召川,失蹤者是張志新(化名)和其女友劉穎南缓,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體荧呐,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡汉形,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了倍阐。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片概疆。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖峰搪,靈堂內(nèi)的尸體忽然破棺而出岔冀,到底是詐尸還是另有隱情,我是刑警寧澤概耻,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布使套,位于F島的核電站,受9級(jí)特大地震影響鞠柄,放射性物質(zhì)發(fā)生泄漏侦高。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一春锋、第九天 我趴在偏房一處隱蔽的房頂上張望矫膨。 院中可真熱鬧,春花似錦期奔、人聲如沸侧馅。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)馁痴。三九已至,卻和暖如春肺孤,著一層夾襖步出監(jiān)牢的瞬間罗晕,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來(lái)泰國(guó)打工赠堵, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留小渊,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓茫叭,卻偏偏與公主長(zhǎng)得像酬屉,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子揍愁,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)呐萨、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,022評(píng)論 4 62
  • 今夜星河故落里 前塵皆忘斷半生 我亦遙看月與夜 竟是樽中有乾坤
    Drunkey閱讀 289評(píng)論 0 0
  • 曬得暈乎乎跟喝得醉醺醺一樣,都容易讓人在清醒之前朽缎,一不小心就詩(shī)興大發(fā)了萌生出一點(diǎn)詩(shī)意盎然惨远。 魚(yú)戲蓮葉間,魚(yú)戲蓮葉東...
    徐克惜愚兄弟閱讀 194評(píng)論 0 1
  • 在讀這本書(shū)之前话肖,我讀書(shū)都是一本一本的北秽,從頭到尾的讀完,剛開(kāi)始讀完的時(shí)候狼牺,感覺(jué)作者說(shuō)得對(duì)羡儿,“嗯,就是這個(gè)樣子”是钥,然后...
    zhuzhu理財(cái)有道閱讀 442評(píng)論 4 6