4

My app uses the framework youtube-is-player-helper-swift, found here: https://github.com/malkouz/youtube-ios-player-helper-swift It is an implementation of the original youtube-ios-player-helper, for Swift. It is working fine, but it is based on UIWebView, deprecated in iOS 12. I'm looking for a version of this framework using WKWebView or some help to change this one. Anyone can point me to a possible solution?

Neto
  • 61
  • 1
  • 7

1 Answers1

5

You can use youtube helper

from hmhv. Which uses WKWebView instead of UIWebView.

Shreeram Bhat
  • 2,849
  • 2
  • 11
  • 19
  • 2
    thank you for your answer...I'm familiar with youtube helper. But I was looking for something in Swift instead of ObjectiveC...mostly because I'm new in XCode and not even sure how to use an ObjectiveC framework – Neto Sep 12 '19 at 23:06
  • Just add it to the project and use it like any other Swift framework. No need to write any objective c code. – Shreeram Bhat Sep 13 '19 at 01:03