One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| class MIDISampler : NSObject { | |
| var engine:AVAudioEngine! | |
| var playerNode:AVAudioPlayerNode! | |
| var mixer:AVAudioMixerNode! | |
| var sampler:AVAudioUnitSampler! | |
| override init() { | |
| super.init() | |
| initAudioEngine() | |
| } |
| internal let DEFAULT_MIME_TYPE = "application/octet-stream" | |
| internal let mimeTypes = [ | |
| "html": "text/html", | |
| "htm": "text/html", | |
| "shtml": "text/html", | |
| "css": "text/css", | |
| "xml": "text/xml", | |
| "gif": "image/gif", | |
| "jpeg": "image/jpeg", |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="initial-scale=1.0" /> | |
| </head> | |
| <body> | |
| <div id="editor" contenteditable="true"></div> | |
| </body> | |
| </html> |
| # Uncomment the next line to define a global platform for your project | |
| # platform :ios, '9.0' | |
| target '%TargetName%' do | |
| # Comment the next line if you're not using Swift and don't want to use dynamic frameworks | |
| use_frameworks! | |
| # Pods for %TargetName% | |
| # pod 'FBSDKCoreKit' | |
| end |
| // | |
| // IPTextField.swift | |
| // | |
| // | |
| // Created by Ilesh on 06/04/18. | |
| // Copyright © 2019 Ilesh. All rights reserved. | |
| // | |
| import Foundation | |
| import UIKit |
| // | |
| // IPFirebaseNotification.swift | |
| // | |
| // | |
| // Created by Ilesh on 06/08/18. | |
| // Copyright © 2018 Ilesh. All rights reserved. | |
| // | |
| import Foundation | |
| import UserNotifications |
| // | |
| // Lookup.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 09/03/19. | |
| // Copyright © 2019 Ilesh. All rights reserved. | |
| // | |
| import Foundation |