Oc News仿新聞?lì)^條UI-demo

pch文件

#ifndef my_pch
#define my_pch

// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
//用于適配的宏
#define  SCR_W  [UIScreen mainScreen].bounds.size.width    // 屏幕寬度
#define  SCR_H  [UIScreen mainScreen].bounds.size.height   // 屏幕高度

#define  FIT_X(x)  (SCR_W/375.*(x))     // 用于x軸適配
#define  FIT_Y(y)  (SCR_H/667.*(y))     // 用于y軸適配
#endif /* my_pch */
ViewController.m

#import "ViewController.h"
#import "NewsCollectionViewCell.h"
#define BTN_W FIT_X(80) // 每個(gè)標(biāo)題按鈕的寬度
@interface ViewController ()<UICollectionViewDelegate,UICollectionViewDataSource,UITableViewDelegate,UITableViewDataSource>
{
    NSArray *_allTitles; //所有的新聞標(biāo)題
    NSArray *_allDatas; //說有的新聞數(shù)據(jù)
    NSArray *_tableDatas; //給每一個(gè)網(wǎng)格單元格中的表格視圖加載數(shù)據(jù)的數(shù)組
    
}

@property (nonatomic,strong)UIScrollView *titleScrView;//標(biāo)題滾動(dòng)視圖
@property (nonatomic,strong)UILabel *titleIndicateLable; //標(biāo)題下方的指示標(biāo)簽
@property (nonatomic,strong)UICollectionView *contentsColView; //新聞內(nèi)容網(wǎng)格視圖
@end
@implementation ViewController

#pragma mark - 懶加載控件

//標(biāo)題滾動(dòng)視圖
- (UIScrollView *)titleScrView
{
    if (!_titleScrView)
    {
        _titleScrView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, FIT_Y(64), SCR_W, FIT_Y(44))];
        _titleScrView.contentSize = CGSizeMake(BTN_W * _allTitles.count, FIT_Y(44));
        _titleScrView.showsHorizontalScrollIndicator = NO;
        
        for (int i = 0 ; i < _allTitles.count; i++)
        {
            UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
            btn.frame = CGRectMake(i*BTN_W, 0, BTN_W, FIT_Y(44));
            [btn setTitle:_allTitles[i] forState:UIControlStateNormal];
            [btn setTitle:_allTitles[i] forState:UIControlStateSelected];
            [btn setTitleColor:[UIColor grayColor] forState:UIControlStateNormal];
            [btn setTitleColor:[UIColor redColor] forState:UIControlStateSelected];
            if (i == 0) {
                btn.selected = YES;
            }
            btn.tag = i+100;
            [btn addTarget:self action:@selector(titleBtnHandle:) forControlEvents:UIControlEventTouchUpInside];
            [_titleScrView addSubview:btn];
        }
        [_titleScrView addSubview:self.titleIndicateLable];
        
    }
    return _titleScrView;
}

//標(biāo)題指示標(biāo)簽
- (UILabel *)titleIndicateLable
{
    if (!_titleIndicateLable)
    {
        _titleIndicateLable = [[UILabel alloc]initWithFrame:CGRectMake(0, FIT_Y(44), BTN_W, FIT_Y(2))];
        _titleIndicateLable.backgroundColor = [UIColor redColor];
    }
    return _titleIndicateLable;
}
//新聞內(nèi)容視圖
- (UICollectionView *)contentsColView
{
    if (!_contentsColView)
    {
        //實(shí)例化網(wǎng)格布局對(duì)象
        UICollectionViewFlowLayout *flow = [[UICollectionViewFlowLayout alloc]init];
        //設(shè)置每個(gè)單元格大小
        flow.itemSize = CGSizeMake(SCR_W, SCR_H-FIT_Y(44));
        //設(shè)置最小行間距
        flow.minimumLineSpacing = 0;
        //設(shè)置最小列間距
        flow.minimumInteritemSpacing = 0;
        //設(shè)置滾動(dòng)方向水平滾動(dòng)
        flow.scrollDirection = UICollectionViewScrollDirectionHorizontal;
        
        
        //實(shí)例化網(wǎng)格視圖
        _contentsColView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, FIT_Y(110), SCR_W, SCR_H-FIT_Y(44)) collectionViewLayout:flow];
        _contentsColView.tag = 444;
        _contentsColView.dataSource = self;
        _contentsColView.delegate = self;
        _contentsColView.pagingEnabled = YES; //分頁滾動(dòng)
        //注冊一個(gè)cell
        [_contentsColView registerClass:[NewsCollectionViewCell class] forCellWithReuseIdentifier:@"NewsCell"];
        
    }
    return _contentsColView;
}
//標(biāo)題滾動(dòng)button方法
- (void)titleBtnHandle:(UIButton *)btn
{
    
    //點(diǎn)擊按鈕讓collection滾動(dòng)
    [self.contentsColView scrollRectToVisible:CGRectMake((btn.tag-100)*SCR_W, 0, SCR_W, FIT_Y(44)) animated:YES];
}
#pragma mark - UICollectionViewDataSource
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return _allTitles.count;
}

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *identifier = @"NewsCell";
    NewsCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    if (!cell)
    {
        cell = [[NewsCollectionViewCell alloc]initWithFrame:CGRectMake(0, 0, SCR_W, SCR_H-FIT_Y(44))];
    }
    cell.newsTable.dataSource = self;
    cell.newsTable.delegate = self;
    return cell;
}
#pragma mark - UICollectionViewDelegate
//將要出現(xiàn)cell時(shí)回調(diào)的方法
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    //如果內(nèi)容網(wǎng)格視圖滾動(dòng),執(zhí)行if中的代碼
    if (scrollView.tag == 444)
    {
        int index = scrollView.contentOffset.x / SCR_W;
        //其他的button變?yōu)閚ormal顏色
        for (int i = 0; i < _allTitles.count ; i++)
        {
            UIButton *btn = (UIButton *)[self.titleScrView viewWithTag:i+100];
            btn.selected = NO;
            if (index == i)
            {
                btn.selected = YES;
            }
        }
        //移動(dòng)指示標(biāo)簽
        [UIView animateWithDuration:0.185 animations:^{
            
            self.titleIndicateLable.frame = CGRectMake(index * BTN_W, FIT_Y(42), BTN_W, FIT_Y(2));
            
        }];
        
        //讓標(biāo)題滾動(dòng)視圖滾動(dòng)到指定位置
        [self.titleScrView scrollRectToVisible:CGRectMake(BTN_W*index, 0, BTN_W, FIT_Y(44)) animated:YES];
        
    }
}
//即將滾動(dòng)出現(xiàn)cell時(shí)的回調(diào)方法
-(void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"%ld",indexPath.row);
    //改變網(wǎng)格單元格中表格視圖的內(nèi)容
    _tableDatas = _allDatas[indexPath.row];
    NewsCollectionViewCell *newsCell = (NewsCollectionViewCell *)cell;
    [newsCell.newsTable reloadData];
    
    
}
#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return _tableDatas.count;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *identifier = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    if (!cell)
    {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
        
    }
    
    cell.textLabel.text = _tableDatas[indexPath.row];
    return cell;
}



- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.view.backgroundColor = [UIColor whiteColor];
    _allTitles = @[@"頭條",@"新聞",@"體育",@"科技",@"財(cái)經(jīng)",@"軍事",@"娛樂",@"家居",@"健康",@"游戲"];
    _allDatas = @[@[@"頭條1",@"頭條2",@"頭條3"],
                  @[@"新聞1",@"新聞2",@"新聞3"],
                  @[@"體育1",@"體育2",@"體育3"],
                  @[@"科技1",@"科技2",@"科技3"],
                  @[@"財(cái)經(jīng)1",@"財(cái)經(jīng)2",@"財(cái)經(jīng)3"],
                  @[@"軍事1",@"軍事2",@"軍事3"],
                  @[@"娛樂1",@"娛樂2",@"娛樂3"],
                  @[@"家居1",@"家居2",@"家居3"],
                  @[@"健康1"],
                  @[@"Game1",@"Game2"]
                  ];
    
    _tableDatas = _allDatas[0];
    
    UIView *v  = [[UIView alloc]init];
    [self.view addSubview: v];
    
    [self.view addSubview:self.titleScrView];
    [self.view addSubview:self.contentsColView];
    
    
    
}



- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
 #pragma mark - Navigation
 
 // In a storyboard-based application, you will often want to do a little preparation before navigation
 - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
 // Get the new view controller using [segue destinationViewController].
 // Pass the selected object to the new view controller.
 }
 */

@end

NewsCollectionViewCell.h

#import <UIKit/UIKit.h>

@interface NewsCollectionViewCell : UICollectionViewCell
@property (nonatomic,strong)UITableView *newsTable;
@end

NewsCollectionViewCell.m

#import "NewsCollectionViewCell.h"

@implementation NewsCollectionViewCell
#pragma Mark - 重寫
- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self)
    {
        self.newsTable = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, SCR_W, SCR_H-FIT_Y(44)) style:UITableViewStylePlain];
        [self.contentView addSubview:self.newsTable];
    }
    return self;
}

@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末傲武,一起剝皮案震驚了整個(gè)濱河市臀突,隨后出現(xiàn)的幾起案子捕透,更是在濱河造成了極大的恐慌场靴,老刑警劉巖污抬,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡传蹈,警方通過查閱死者的電腦和手機(jī)厚脉,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門习寸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人傻工,你說我怎么就攤上這事霞溪。” “怎么了中捆?”我有些...
    開封第一講書人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵鸯匹,是天一觀的道長。 經(jīng)常有香客問我泄伪,道長殴蓬,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任蟋滴,我火速辦了婚禮染厅,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘津函。我一直安慰自己肖粮,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開白布尔苦。 她就那樣靜靜地躺著涩馆,像睡著了一般。 火紅的嫁衣襯著肌膚如雪允坚。 梳的紋絲不亂的頭發(fā)上魂那,一...
    開封第一講書人閱讀 50,084評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音屋讶,去河邊找鬼冰寻。 笑死,一個(gè)胖子當(dāng)著我的面吹牛皿渗,可吹牛的內(nèi)容都是我干的斩芭。 我是一名探鬼主播,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼乐疆,長吁一口氣:“原來是場噩夢啊……” “哼划乖!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起挤土,我...
    開封第一講書人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤琴庵,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體迷殿,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡儿礼,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了庆寺。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蚊夫。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖懦尝,靈堂內(nèi)的尸體忽然破棺而出知纷,到底是詐尸還是另有隱情,我是刑警寧澤陵霉,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布琅轧,位于F島的核電站,受9級(jí)特大地震影響踊挠,放射性物質(zhì)發(fā)生泄漏乍桂。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一止毕、第九天 我趴在偏房一處隱蔽的房頂上張望模蜡。 院中可真熱鬧,春花似錦扁凛、人聲如沸忍疾。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽卤妒。三九已至,卻和暖如春字币,著一層夾襖步出監(jiān)牢的瞬間则披,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來泰國打工洗出, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留士复,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓翩活,卻偏偏與公主長得像阱洪,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子菠镇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

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

  • 創(chuàng)建工程添加第三方RESideMenu添加PCH文件Starry.pch在程序Build Settings 的Pr...
    Wang99閱讀 319評(píng)論 0 0
  • 走著走著冗荸,恍然覺著自己長大了。不僅僅是身體利耍,更多的是年齡蚌本。到了年齡被迫的做很多事情盔粹,讓我覺著我為了年齡再活: 1....
    一頭小鹿閱讀 189評(píng)論 0 0
  • 一個(gè)人認(rèn)真的吃飯,細(xì)嚼慢咽程癌,像是很久不見的老朋友舷嗡,細(xì)數(shù)家常 一個(gè)人安靜的聽音樂,絕對(duì)古典嵌莉,一曲循環(huán)咬崔,像是一杯醇濃的...
    笑思思閱讀 168評(píng)論 0 0
  • 文/紅茶要加冰 看完這部電影,最直觀的感覺是烦秩,我不知道這部電影講了些啥,甚至都看到片尾了郎仆,連主角的名字都不是太清楚...
    紅茶要加冰閱讀 1,313評(píng)論 3 0