How to display native view in React Native (iOS)

Published On: 18 March 2021.By .
  • General

While working in react native, Many times, we needed to display native view in React Native.

In this post, I’d like to show you an example of both how to do it and how to pass data from React Native to this native view.

Let’s get into it. As a native view, we’ll use VideoPlayer View from Player pod. It’s a great video player library with various built-in features.

Note:- In This post, we won’t talk about things like to init project and how to setup. We are hoping that you are already familiar with it.

So how it works on the iOS side?

 

firstly, we prepare our VideoPlayerView.swift that we’d like to display:

Defining out custom view in iOS

Create a new file: File -> New -> File… -> Cocoa Touch Class

Note:-When asked, choose Create Bridge Header.

Select the file ProjectName-Bridging-Header.h and add this content:

Define our custom view:-

Open VideoPlayerView.swift and paste the following code to define our view:

But wait

 //1 for what,
We will define a separate controller for our video player.

And what about //2,
This layout method will be called every time whenever my view will be rendered or the layout gets changed.

Ok, but we have //3 too,
This method will be responsible for adding videoplayre’s viewcontroller view inside this view.

I have never seen//4, where did ParentViewController come from,
We introduced it so we can access the current view controller to set this view in that
So we will define an iOS swift extension .

OK enough!, Talk about how to manipulate this view.

 

Well to use this view, we will have to consume RCTViewManager  subclass that will be the one creating and manipulating this view.

Create a new file of type objective c:- VideoPlayerViewManager

 

In above code, Lines

  1. Here RCT_EXPORT_MODULE() macro is used so we have access to this class from RN and return our VideoPlayerView.swift in view function. This function decides which view will be displayed for this class in RN.
  2. we use RCT_EXPORT_VIEW_PROPERTY where the first parameter is a name of the prop that we will send from RN and the second parameter is a type. This macro will also set values for us of those RN props to our VideoPlayerView.swift variables that we’d like to use in there.

Ok enough from the iOS side, we want to implement it in react native so let’s move toward there,

And how it will work on the React Native side?

JavaScript:-

Define our custom view in Javascript

Let’s create a simple wrapper for our custom view:

VideoPlayer.js

 

BUT How to use it

To use it you can do the following

 

But What if we will have to notify ours react-native side code when the video player is a pause, stop, finish the video in the iOS Native component?

Well, No worries if you have no idea about it for now because luckily we do have a solution for that, RN was not planning to abandon us so they have RCTBubblingEventBlock for us, this works as the callback.

 

To have the benefit of this call back we need to add the following code in the following files.

  1. In VideoPlayerView :-
    1.  @objc var onClick: RCTBubblingEventBlock? // To declare variable of predefined event type
    2. onClick(params as? [AnyHashable : Any]) // To call js onclick(Like call back)
  1. In VideoPlayerViewManager
    1. RCT_EXPORT_VIEW_PROPERTY(onClick, RCTBubblingEventBlock) // To export to RN
  1. In VideoPlayer.js // To access in RN
    1. onClick = (event: Object) => {

  console.log(‘Received params: ‘ + JSON.stringify(event), event); };

Omg Wee Bey Brice GIF - Omg WeeBeyBrice HassanJohnson GIFs
woooho! that’s it.   wasn’t simple?

 

Git repository address: – Bitbucket Code

In addition:-  This repository also demonstrate that how to call iOS Native View controller From RN

 

Happy to hear feedbacks.

 

References:- 

 

Related content

That’s all for this blog