AutoCoding icon indicating copy to clipboard operation
AutoCoding copied to clipboard

No support for SEL

Open kevinrenskers opened this issue 10 years ago • 2 comments

Selectors (type SEL) are currently not encoded and decoded.

kevinrenskers avatar Sep 26 '13 14:09 kevinrenskers

AutoCoding only supports the encoding of types that are work with KVC, which may not include SEL. I'll look into it.

nicklockwood avatar Oct 04 '13 13:10 nicklockwood

Selectors at a base level are just char arrays. Should be pretty straight forward to encode and decode them.

const char* sel_getName(SEL aSelector)

7imbrook avatar Oct 15 '13 17:10 7imbrook