Doesn't navigate to Youtube channel in Ionic cordova ios

Hi Guys,

I am trying to navigate youtube channel when we click on button in ios, but it was not working, it is perfectly working in android …

Below are the my reference

HTML file
<ion-button class=“youtube_btn” (click)=“openYoutube()”>Our youtube channel

TS file

import { DomSanitizer } from ‘@angular/platform-browser’;

constructor( private sanitizer: DomSanitizer) {
this.getSafeUrl(“https://www.youtube.com/embed/FSFTBf7frUs”);
}
openYoutube(){
window.open(‘https://www.youtube.com/channel/UCp7eM4-x4K4AeSkiRHfxDbQ’, ‘_system’, ‘location=yes’);
}

getSafeUrl(url) {
this.url = this.sanitizer.bypassSecurityTrustResourceUrl(url);
}