Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 357 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 357 Bytes

MIDIWebView

Problem:

WebMIDI API is not natively included for WKWebView in iOS.

Solution:

WMWebView A subclass of Apple's WKWebView which executes a Javascript polyfill for the WebMIDI API spec.

Usage

import MIDIWebView

class MyViewController: ViewController {
    
    @IBOutlet var myWebView: WMWebView!
    
    ...
}