This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import AudioKit | |
import AudioKitEX | |
import AVFoundation | |
import SoundpipeAudioKit | |
import DunneAudioKit | |
class AudioEffectsConductorAudioKitService { | |
private let engine = AudioEngine() | |
private let leadingVocalAudioPlayer = AudioPlayer() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Post: NSObject { | |
var text: String! | |
var numberOfLikes: Int! | |
var numberOfComments: Int! | |
... | |
} |