Re: dereference UnsafePointer

2015-07-20 Thread Jan E. Schotsman
On Jul 20, 2015, at 5:01 PM, Roland King wrote: asbd.memory().mChannelsPerFrame I think should work - untested asbd.memory.mChannelsPerFrame compiles, so that's probably what I was after. Jan E. ___ Cocoa-dev mailing list (Cocoa-dev@lists.app

Re: dereference UnsafePointer

2015-07-20 Thread Roland King
> On 20 Jul 2015, at 22:57, Jan E. Schotsman wrote: > > Hello list, > > How can I dereference an UnsafePointer in Swift? > > For example > > let asbd = CMAudioFormatDescriptionGetStreamBasicDescription( > formatDescription ) > > let numSndChannels = asbd->mChannelsPerFrame // this fails to

dereference UnsafePointer

2015-07-20 Thread Jan E. Schotsman
Hello list, How can I dereference an UnsafePointer in Swift? For example let asbd = CMAudioFormatDescriptionGetStreamBasicDescription( formatDescription ) let numSndChannels = asbd->mChannelsPerFrame // this fails to compile, of course Do I need to write an accessor in a .c or .m file?