iOS开源&高仿项目精选自个儿读iOS学习

iOS开发之高仿斗鱼tv初探

2016-08-14  本文已影响4116人  love平_冲

最近直播比较火,开发者也相近去模仿一些直播的应用,比如喵播,映客等等,我也利用闲暇时间模仿了斗鱼,供大家互相学习,有哪些不足的地方,还请大家多多讨论交流。

程序预览图

由于项目需要额外再导入个框架,所以不想导入,想直接查看源码的,可以通过百度云下载本项目:https://pan.baidu.com/s/1nv8iubJ

整体的设计一览

/*
 * 哪些页面支持自动转屏
 */
 - (BOOL)shouldAutorotate{
    UINavigationController *nav = self.viewControllers[self.selectedIndex];
    if ([nav.topViewController isKindOfClass:[YCLivePlayViewController class]]) {
        return YES;
    }
    return NO;
}

② 设置控制器所支持的屏幕方向

/**
 *  viewcontroller支持哪些转屏方向
 */
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
    UINavigationController *nav = self.viewControllers[self.selectedIndex];
    if ([nav.topViewController isKindOfClass:[YCLivePlayViewController class]]) {
        YCLivePlayViewController *liveVc = (YCLivePlayViewController *)nav.topViewController;
        // 判断如果直播控制器点击了,锁定屏幕的话,就禁止竖屏
        if (liveVc.isLock) {
            return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
        }
        return UIInterfaceOrientationMaskAllButUpsideDown;
    }
    // 其他页面
    return UIInterfaceOrientationMaskPortrait;
}  
/**
 *  自定义的等长label的宽度
 */
@property (nonatomic,strong) NSNumber *customLabelsWidth;

/**
 *  自定义的titleLabel的间距
 */
@property (nonatomic,strong) NSNumber *customMargin;

下图做了一层判断,如果我们自己设置了宽度和间距,就不会再去计算文字的宽度了,也不会使用默认的间距了


设置标签的宽度和间距

如果自定义了等长的宽度,也就说明标题按钮的宽度差为0

// 获取两个标题按钮宽度差值
- (CGFloat)widthDeltaWithRightLabel:(UILabel *)rightLabel leftLabel:(UILabel *)leftLabel
{
    // 自定义了等长的宽度
    if (self.customLabelsWidth) {
        return 0;
    }
    
    CGRect titleBoundsR = [rightLabel.text boundingRectWithSize:CGSizeMake(MAXFLOAT, 0) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:self.titleFont} context:nil];
    
    CGRect titleBoundsL = [leftLabel.text boundingRectWithSize:CGSizeMake(MAXFLOAT, 0) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:self.titleFont} context:nil];
    
    return titleBoundsR.size.width - titleBoundsL.size.width;
}

设置下标的位置

// 设置下标的位置
- (void)setUpUnderLine:(UILabel *)label {
    // 获取文字尺寸
    CGRect titleBounds = [label.text boundingRectWithSize:CGSizeMake(MAXFLOAT, 0) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:self.titleFont} context:nil];
    CGFloat underLineH = _underLineH?_underLineH:YZUnderLineH;
    self.underLine.y = label.height - underLineH;
    self.underLine.height = underLineH;

    // 最开始不需要动画
#warning 如果自定义了label的宽度,下标也和label宽度一样
    if (self.underLine.x == 0) {
        self.underLine.width = self.customLabelsWidth ? self.customLabelsWidth.floatValue : titleBounds.size.width;
        self.underLine.x = label.x;
        return;
    }
  
    // 点击时候需要动画
    [UIView animateWithDuration:0.25 animations:^{
        self.underLine.width = self.customLabelsWidth ? self.customLabelsWidth.floatValue : titleBounds.size.width;
        self.underLine.x = label.x;
    }];
}

最后只需要在YCHomeViewController中,写入以下两行代码,即可实现等长的标题

    self.customLabelsWidth = [NSNumber numberWithFloat:self.view.width / self.childViewControllers.count];
    self.customMargin = [NSNumber numberWithFloat:0.00001]; // 切记如果设置等长的话,必须再设置自定义的margin为一个很小的值,但是不能为0

下面来介绍一下,Home控制器下的四个子控制器
(1)、YCRecommendViewController(推荐控制器)
轮播采用的一个第三方SDCycleScrollView
底下的标签一栏,一个UIScrollView,然后添加自定义的UIButton就可以了,至此上面的所有控件共同组成了tableView的tableHeaderView

然后就是自定义的YCRecommendCell和自定义的YCRecommendHeaderView,这个cell装着一个UICollectionView用来排版所有的房间,也就是说,每一个cell代表一个分组,这个组的headerView就是YCRecommendHeaderView,然后这个cell里有一个UICollectionView,这个UICollectionView里面就装着所有的房间,点击每个房间就调用cell的block属性,具体的可以查看源码
(2)、接下来的游戏,娱乐,趣玩和推荐都大同小异,可以阅读以下源码

“我要直播”这块目前还没有做,有时间的话再更新这块,不过大家可以先学习一下,读读这个博文快速集成iOS基于RTMP的视频推流

运行项目时,请查看ijkplayer的集成过程,然后将打包好的框架,导入到播放->IJKMediaFramework文件夹下,如果不想自己导入的话,我百度云分享给你们https://pan.baidu.com/s/1o8jdEMA

最后,附上github地址,欢迎下载查看,有什么好的意见或者不足也可以找我讨论交流https://github.com/ITChong/DouYuTvImitation

上一篇下一篇

猜你喜欢

热点阅读