iOS高仿斗鱼项目(OC版)


1

iOS高仿斗鱼项目(OC版)_第1张图片

iOS高精仿�斗鱼(OC)


开发环境:Xcode 7.3.1,语言:Objective-C

用到的工具:Charles

首页

首页 推荐

轮播图

轮播图用的是第三方框架SDCycleScrollView,功能多,简单易用,具体实现看代码

SDCycleScrollView *headView = [SDCycleScrollView cycleScrollViewWithFrame:CGRectMake(0,0, [UIScreenmainScreen].bounds.size.width,140) delegate:selfplaceholderImage:[UIImageimageNamed:@"cover_img_default"]];self.headView= headView;            headView.pageControlStyle= SDCycleScrollViewPageContolStyleClassic;            headView.pageControlAliment= SDCycleScrollViewPageContolAlimentRight;            headView.currentPageDotColor= [UIColorcolorWithRed:255/255.0green:121/255.0blue:31/255.0alpha:1.0];            [slide addSubview:headView];NSMutableArray*imageArray = [NSMutableArrayarray];self.imageArray= imageArray;for(Slide_data *iamgesinself.slide.data) {                [self.imageArrayaddObject:iamges.pic_url];            }self.headView.imageURLStringsGroup=self.imageArray;

滑动按钮

这个部分是用继承自UICollectionReusableView的一个视图然后再套用collectionView,如果大家有好的想法,可以交流,备注:控制器用的是collectionViewController

collectionView头部

同样继承UICollectionReusableView的视图,再自定义子控件。子控件代码如下 ,用到了masonry约束。

- (instancetype)initWithFrame:(CGRect)frame{if(self= [superinitWithFrame:frame]) {        [selfsetupSubviews];    }returnself;}- (void)setupSubviews{UIView*bgView = [[UIViewalloc]init];self.bgView= bgView;    [selfaddSubview:bgView];    [bgView mas_makeConstraints:^(MASConstraintMaker *make) {        make.top.left.right.bottom.mas_equalTo(0);    }];UIImageView*icon = [[UIImageViewalloc]init];self.icon= icon;    [selfaddSubview:icon];    [icon mas_makeConstraints:^(MASConstraintMaker *make) {        make.left.mas_equalTo(5);        make.centerY.mas_equalTo(self.bgView);    }];UILabel*titleLabel = [[UILabelalloc]init];self.titleLabel= titleLabel;    [selfaddSubview:titleLabel];    [titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {        make.left.mas_equalTo(30);        make.centerY.mas_equalTo(self.icon);    }];    titleLabel.textColor= [UIColorblackColor];    titleLabel.font= [UIFontsystemFontOfSize:14];UIButton*moreBtn = [[UIButtonalloc]init];self.moreBtn= moreBtn;    [selfaddSubview:moreBtn];    [moreBtn mas_makeConstraints:^(MASConstraintMaker *make) {        make.right.mas_equalTo(-10);        make.centerY.mas_equalTo(self.bgView);        make.width.mas_equalTo(60);    }];    [moreBtn setImage:[UIImageimageNamed:@"btn_skip_pressed"] forState:UIControlStateNormal];    [moreBtn setTitle:@"更多"forState:UIControlStateNormal];    moreBtn.titleLabel.font= [UIFontsystemFontOfSize:12];    [moreBtn setTitleColor:[UIColorcolorWithRed:170/255.0green:170/255.0blue:170/255.0alpha:1.0] forState:UIControlStateNormal];    moreBtn.imageEdgeInsets=UIEdgeInsetsMake(0,50,0,0);}

collectionView 尾部

同样继承UICollectionReusableView的视图,就是一个灰色的view

- (instancetype)initWithFrame:(CGRect)frame{if(self= [superinitWithFrame:frame]) {        [selfsetupSubviews];    }returnself;}- (void)setupSubviews{UIView*view = [[UIViewalloc]init];self.view= view;    [selfaddSubview:view];    [view mas_makeConstraints:^(MASConstraintMaker *make) {        make.left.top.bottom.right.mas_equalTo(0);    }];    view.backgroundColor= [[UIColorlightGrayColor]colorWithAlphaComponent:0.3];}

collectionViewCell

这个就是collectionViewCell了,里面有2种尺寸的cell,根据section区分尺寸就可以了,标题也一样区分

颜值模块直播实现

直播

直播的框架,我使用的b站的ijkplayer,详细的集成方法和使用方法上搜一下很多,点赞,送礼物暂时没实现,待研究。

其它模块直播实现

斗鱼直播链接抓不到(加密了)所以找了一个在线直播卫视,rtmp://live.hkstv.hk.lxdns.com:1935/live/hks,只演示播放功能的实现

播放器

首页 游戏

首页 游戏

和推荐模块相近,代码类似

首页 娱乐

和推荐模块相近,代码类似

首页 趣玩

和推荐模块相近,代码类似

关注

关注

头部

这个就是加一个白色的view

- (void)setupSubviews{UIView*bgView = [[UIViewalloc]init];self.bgView= bgView;    [self.viewaddSubview:bgView];    [bgView mas_makeConstraints:^(MASConstraintMaker *make) {        make.width.mas_equalTo([UIScreenmainScreen].bounds.size.width);        make.height.mas_equalTo(100);        make.top.mas_equalTo(64);    }];    bgView.backgroundColor= [UIColorwhiteColor];UILabel*label = [[UILabelalloc]init];self.label= label;    [bgView addSubview:label];    [label mas_makeConstraints:^(MASConstraintMaker *make) {        make.top.mas_equalTo(30);        make.centerX.mas_equalTo(self.view);    }];    label.text=@"你还没有登录";    label.font= [UIFontsystemFontOfSize:16];    label.textColor= [UIColorcolorWithRed:255/255.0green:114/255.0blue:47/255.0alpha:1.0];UILabel*subLabel = [[UILabelalloc]init];    [bgView addSubview:subLabel];    [subLabel mas_makeConstraints:^(MASConstraintMaker *make) {        make.top.mas_equalTo(self.label.mas_bottom).mas_equalTo(10);        make.centerX.mas_equalTo(self.view);    }];    subLabel.text=@"看看下面的推荐或登录已有帐号";    subLabel.font= [UIFontsystemFontOfSize:14];    subLabel.textColor= [UIColorgrayColor];}

我的

我的

头部

头部用的是xib,省去写代码了有弧度的控件,设置相关的layer属性,导航栏透明看代码

-(void)viewWillAppear:(BOOL)animated{    [superviewWillAppear:animated];    [self.navigationController.navigationBarsetBackgroundImage:[UIImagenew] forBarMetrics:UIBarMetricsDefault];    [self.navigationController.navigationBarsetShadowImage:[UIImagenew]];}-(void)viewWillDisappear:(BOOL)animated{    [superviewWillDisappear:animated];    [self.navigationController.navigationBarsetBackgroundImage:nilforBarMetrics:UIBarMetricsDefault];    [self.navigationController.navigationBarsetShadowImage:nil];}

推荐拓展阅读

举报文章

著作权归作者所有

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!

¥ 打赏支持

喜欢

11

分享到微博分享到微信

更多分享

×

喜欢的用户

ANStevent2016.12.12 17:09

冯惜君2016.12.01 17:02

静等風来那个梦2016.11.05 12:09

Phone子2016.09.18 10:55

ios码农学生2016.09.11 23:12

Dev_LiYang2016.09.11 23:09

jeremywangze2016.09.11 15:52

iOS高仿斗鱼项目(OC版)_第2张图片

linleiqin2016.09.11 01:06

YungFan2016.09.10 10:43

zero0002016.09.04 22:55

iOS高仿斗鱼项目(OC版)_第3张图片

某某某某人2016.09.02 20:02

9条评论(按时间正序·按时间倒序·按喜欢排序)添加新评论

EEEasonX

2 楼 ·2016.09.01 16:56

@葱花饼交流一下 婚礼纪 的电子请帖的制作 和 结婚运算这个界面的制作。谢谢 !

喜欢(0)回复

青菜君

3 楼 ·2016.09.05 14:48

有源码吗?

喜欢(0)回复

iOS开发笔记

5 楼 ·2016.09.09 16:53

厉害

喜欢(0)回复

大牛大神

6 楼 ·2016.09.11 10:19

能不能看一下你的源码?

喜欢(0)回复

不做好事的老实人

7 楼 ·2016.09.12 15:50

楼主,有源码吗?

喜欢(0)回复

NtZheng

8 楼 ·2016.09.18 14:34

真厉害

喜欢(0)回复

NtZheng

9 楼 ·2016.09.18 14:34

已关注!

喜欢(0)回复

love平_冲

10 楼 ·2016.09.28 07:03

楼主为何不提供源码???

喜欢(0)回复

烤海苔

11 楼 ·2016.12.12 00:29

兄弟,我在等你信息

喜欢(0)回复

加载更多

Ctrl+Enter 发表

被以下专题收入,发现更多相似内容:

iOS开发杂货铺

添加关注

简介 纪录开发的点点滴滴,相互学习,共同进步~ 专题内容主要包括Object-C、Swift等开发技巧以及学习过程的内容 投稿需...

2734篇文章· 2318人关注

iOS 开发之路

添加關注

为了让更多的人体验编程的快乐,不管您是大牛还是牛犊,欢迎您投稿,让我们建立一个资源库,根据投稿的相对质量,我们会给您一定的打赏

1567篇文章· 359人關注

iOS学习

添加关注

学习

1134篇文章· 195人关注

你可能感兴趣的:(iOS高仿斗鱼项目(OC版))