UITableView中加UICollectonView

效果展示

效果圖.png

1 .將TableView初始化在ViewController上

#import "ViewController.h"
#import "TableViewCell.h"

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>

@property (nonatomic,strong) UITableView *tabeView;

@end

@implementation ViewController

- (UITableView *)tabeView {
    
    if (_tabeView == nil) {
        _tabeView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame)) style:UITableViewStylePlain];
        _tabeView.delegate = self;
        _tabeView.dataSource = self;
        _tabeView.estimatedRowHeight = 200;
        _tabeView.rowHeight = UITableViewAutomaticDimension;
    }
    
    return _tabeView;
}

- (void)viewDidLoad {
    
    [super viewDidLoad];

    [self.view addSubview:self.tabeView];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    
    return 10;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    NSArray *titles = @[
                        @"出售",@"委托",@"約看",@"清單",@"列表",
                        @"出售",@"委托",@"約看",@"清單",@"列表",
                        @"出售",@"委托",@"約看",@"清單",@"列表",
                        @"出售",@"委托",@"約看",@"清單",@"列表",
                        ];
    
    return [TableViewCell initTableViewCell:tableView titleArrays:titles];
}

@end

2.TableViewCell中添加UICollectionView 和UIPageControl


TableView.xib結(jié)構(gòu)
#import "TableViewCell.h"
#import "CollectionViewCell.h"

@interface TableViewCell()<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>

@property (weak,  nonatomic) IBOutlet UICollectionView *collectionView;

@property (weak, nonatomic) IBOutlet UIPageControl *pageControl;      //page顯示

@property (strong,nonatomic) UICollectionViewFlowLayout *flowLayout;  //UICollectionFlowLayout布局

@property (strong,nonatomic) NSArray *titlesArray;                    //顯示標題數(shù)組

@end

static NSString *collectionIdentifier = @"CollectionViewCell";

@implementation TableViewCell

+ (TableViewCell *)initTableViewCell:(UITableView *)tableView titleArrays:(NSArray*)titiles {

    TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([TableViewCell class])];
    
    if (cell == nil) {
        
        cell = [[[NSBundle mainBundle] loadNibNamed:@"TableViewCell" owner:self options:nil] lastObject];
    }
    
    cell.titlesArray = titiles;
    cell.pageControl.numberOfPages = titiles.count/5 + 1;
    cell.flowLayout = [[UICollectionViewFlowLayout alloc]init];
    cell.flowLayout.itemSize = CGSizeMake(([UIScreen mainScreen].bounds.size.width-16)/4, 100);
    cell.flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    [cell.collectionView registerNib:[UINib nibWithNibName:@"CollectionViewCell" bundle:nil] forCellWithReuseIdentifier:collectionIdentifier];
    cell.collectionView.collectionViewLayout = cell.flowLayout;
    cell.collectionView.pagingEnabled = YES;
    cell.collectionView.delegate = cell;
    cell.collectionView.dataSource = cell;
    return cell;
}

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

    return self.titlesArray.count;
}

- (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

    CollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:collectionIdentifier forIndexPath:indexPath];

    [cell setModel:self.titlesArray[indexPath.item] item:indexPath.item];
    
    return cell;
}

//UICollectionViewFlowLayout 布局
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    
    return CGSizeMake(([UIScreen mainScreen].bounds.size.width-16)/4, 100);
}

-(UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
    
    return UIEdgeInsetsMake(0, 0, 0, 0);
    
}

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

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

-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{

    NSInteger curPageIndex = scrollView.contentOffset.x / ([UIScreen mainScreen].bounds.size.width - 16);
    
    //滑動戏罢,顯示第幾頁
    self.pageControl.currentPage = curPageIndex;
}


- (void)awakeFromNib {
    [super awakeFromNib];
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
}

@end

3.CollectionViewCell布局

CollectionViewCell.xib布局

#import "CollectionViewCell.h"

@interface CollectionViewCell()

@property (weak, nonatomic) IBOutlet UILabel *elblDesc;

@end

@implementation CollectionViewCell

- (void)setModel:(NSString *)title item:(NSInteger)indexRow {
    
    if (indexRow % 5 == 0) {
        
        self.backgroundColor  = [UIColor yellowColor];
    } else if (indexRow % 5 == 1){
    
        self.backgroundColor  = [UIColor lightGrayColor];
    }else if (indexRow % 5 == 2){
        
        self.backgroundColor  = [UIColor redColor];
    }else if (indexRow % 5 == 3){
        
        self.backgroundColor  = [UIColor greenColor];
    }else if (indexRow % 5 == 4){
        
        self.backgroundColor  = [UIColor darkGrayColor];
    }
    
    self.elblDesc.text = title?:@"";
}


- (void)awakeFromNib {
    [super awakeFromNib];
}

@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末溺职,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌校摩,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件臊旭,死亡現(xiàn)場離奇詭異营袜,居然都是意外死亡,警方通過查閱死者的電腦和手機关霸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門传黄,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人队寇,你說我怎么就攤上這事膘掰。” “怎么了佳遣?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵识埋,是天一觀的道長。 經(jīng)常有香客問我零渐,道長窒舟,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任诵盼,我火速辦了婚禮惠豺,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘风宁。我一直安慰自己洁墙,他們只是感情好,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布戒财。 她就那樣靜靜地躺著热监,像睡著了一般。 火紅的嫁衣襯著肌膚如雪饮寞。 梳的紋絲不亂的頭發(fā)上孝扛,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天列吼,我揣著相機與錄音,去河邊找鬼苦始。 笑死冈欢,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的盈简。 我是一名探鬼主播凑耻,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼柠贤!你這毒婦竟也來了香浩?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤臼勉,失蹤者是張志新(化名)和其女友劉穎邻吭,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體宴霸,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡囱晴,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了瓢谢。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片畸写。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖氓扛,靈堂內(nèi)的尸體忽然破棺而出枯芬,到底是詐尸還是另有隱情,我是刑警寧澤采郎,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布千所,位于F島的核電站,受9級特大地震影響蒜埋,放射性物質(zhì)發(fā)生泄漏淫痰。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一整份、第九天 我趴在偏房一處隱蔽的房頂上張望待错。 院中可真熱鬧,春花似錦皂林、人聲如沸朗鸠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至胎挎,卻和暖如春沟启,著一層夾襖步出監(jiān)牢的瞬間忆家,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工德迹, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留芽卿,地道東北人。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓胳搞,卻偏偏與公主長得像卸例,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子肌毅,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

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

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫筷转、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,065評論 4 62
  • 前言 由于最近兩個多月悬而,筆者正和小伙伴們忙于對公司新項目的開發(fā)呜舒,筆者主要負責項目整體架構(gòu)的搭建以及功能模塊的分工。...
    CoderMikeHe閱讀 27,009評論 74 271
  • 今晚去吃餃子太熱笨奠,把圍巾脫下落那里了袭蝗,直到上課才發(fā)現(xiàn),投射我的圍巾還在餃子店般婆。投射每天都有10塊錢以上的額外收入到腥。...
    麗麗丫丫閱讀 194評論 0 0
  • 〖道德經(jīng) 以柔克剛〗:天下莫柔弱如水,而攻堅強者莫之能勝蔚袍,以其無以易之左电。弱之勝強,柔之勝剛页响,天下莫不知篓足,莫能行。 ...
    黃俊敏閱讀 692評論 2 2