Skip to content

Latest commit

 

History

History
executable file
·
46 lines (35 loc) · 1.28 KB

File metadata and controls

executable file
·
46 lines (35 loc) · 1.28 KB

Build Status Platform

IRMultiplePlayerLayout

  • IRMultiplePlayerLayout is a multiple video players for iOS.

  • Using the video player(IRPlayer).

  • Using naitve TableView.

  • Using Texture/AsyncDisplayKit (Texture).

  • Sibling repository: IRMultiplePlayers.

Features

  • Support naitve TableView.
  • Support Texture framework.

Install

Git

  • Git clone this project.

Usage

Basic

  • Setup ASTableNode.
_tableNode = [[ASTableNode alloc] init];
_tableNode.delegate = self;
_tableNode.dataSource = self;
  • Setup VideoModel.
NSString *videoUrlString = @"https://www.w3schools.com/html/mov_bbb.mp4";
  NSString *avatarUrlString = @"https://www.google.com.tw/images/branding/googlelogo/2x/googlelogo_color_160x56dp.png";

_title      = @"Demo title";
_url        = [NSURL URLWithString:videoUrlString];
_userName   = @"Random User";
_avatarUrl  = [NSURL URLWithString:avatarUrlString];

Screenshots

Demo1 Demo2
Demo1 Demo2