亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

collectionview怎么實現商品分類頁面

發布時間:2021-10-29 17:19:37 來源:億速云 閱讀:172 作者:iii 欄目:移動開發

本篇內容介紹了“collectionview怎么實現商品分類頁面”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

左邊一級分類使用tableview來展示,右邊的耳機分類使用collectionview來展示,主要就是實現一二級分類的聯動。下面主要講下點擊和滑動。

1、左側一級分類的點擊實現

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    if (indexPath.row != selectTableIndex) {
        //判斷滑動是不是因為點擊一級分類引起
        isClickLeft = YES;
        selectTableIndex = indexPath.row;
        [tableView reloadData];
//二級分類滑動到對應的區域
        [_classCollectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:selectTableIndex] atScrollPosition:UICollectionViewScrollPositionTop animated:YES];
        ///讓collectionview的滑動回退sectionheader的高度
        _classCollectionView.contentOffset = CGPointMake(0, _classCollectionView.contentOffset.y-70);
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            isClickLeft = NO;
        });
    }
}

2、在collectionview的代理方法中更改一級分類的選中

///collectionview將要加載頭尾視圖調用的方法
- (void)collectionView:(UICollectionView *)collectionView willDisplaySupplementaryView:(UICollectionReusableView *)view forElementKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath {
    if (isClickLeft) {
        return;
    }
    CGPoint point = [view convertPoint:CGPointZero toView:self.view];
    ///判斷是不是SectionHeader
    if (point.y < 100 && [elementKind isEqualToString:UICollectionElementKindSectionHeader]) {
        ///更新當前選中的一級分類的indexpath
        selectTableIndex = indexPath.section;
        [_classTableView reloadData];
    }
}
///collectionview已經加載完頭尾視圖調用的方法
 
- (void)collectionView:(UICollectionView *)collectionView didEndDisplayingSupplementaryView:(UICollectionReusableView *)view forElementOfKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath {
    if (isClickLeft) {
        return;
    }
    CGPoint point = [view convertPoint:CGPointZero toView:self.view];
    ///判斷是不是SectionHeader
    if (point.y < 100 && [elementKind isEqualToString:UICollectionElementKindSectionHeader]) {
        ///更新當前選中的一級分類的indexpath
        selectTableIndex = indexPath.section;
        [_classTableView reloadData];
}

“collectionview怎么實現商品分類頁面”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

襄城县| 长宁县| 台安县| 沽源县| 全椒县| 垣曲县| 闻喜县| 班玛县| 莎车县| 泸溪县| 都昌县| 泗洪县| 玛纳斯县| 东乡族自治县| 宁南县| 济南市| 彝良县| 阿拉善左旗| 桓仁| 收藏| 松原市| 赣榆县| 丹巴县| 千阳县| 桃园县| 祁门县| 桦南县| 蓬莱市| 淳安县| 洪洞县| 晋中市| 巨鹿县| 博野县| 阆中市| 中江县| 光山县| 泰来县| 黔西| 崇义县| 华亭县| 许昌市|