nicklockwood / AutoCoding

AutoCoding is a category on NSObject that provides automatic support for NSCoding and NSCopying to every object.
Other
1.07k stars 131 forks source link

No support for SEL #6

Open kevinrenskers opened 11 years ago

kevinrenskers commented 11 years ago

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

nicklockwood commented 11 years ago

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

7imbrook commented 11 years ago

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)