Reputation: 41
Hi is audioKit an API where you just use swift or can I use c++ as well. asking because I'm teaching myself c++ and want to know if I should also learn swift just to use AudioKit. On the website it says AudioKit is built using c++,swift, and c. Am I suppose to know all three? sorry I'm new to programming.
Upvotes: 2
Views: 177
Reputation: 3838
You can use just Swift with AudioKit if you are only using the baked-in goodies.
If you want to write your own audio render block, then you cannot do that in Swift (yet). Most developers use C++ or C in the render block.
Upvotes: 2