I am trying to access a property of a Swift class using pure C code, since I'm in the Audio Thread.
The property is declared so:
var Triggers: [[Int]] = [[Int]]()
C sees this as a NSArray (non mutable) hence I can't modify its elements. Declaring the property as a NSMutableArray is also not helping.
What would be the correct approach?
Thanks.