I'm trying to implement a dispatch table, so that I can call a selector with the following example code:
NSInteger i = 2;
[myObject performSelector:selectors[i]];
I'm trying to store user preferences which affect which method of an API gets called. Right now, I use the string name of the selector and use NSSelectorFromString, but that's a bit messy. If I use a dispatch table, then I can store an enum instead.
How can I make an array of selectors, or a dispatch table in Objective-C?
Edit:
The compiler complains when I try to set an array of selectors as a property. @property SEL[]
won't compile.
Edit2:
I'm using my KosherCocoa API library and I want to call a single method at once, based on a saved user setting. I'm saving to and reading from a Plist file.
You can use the
SEL
type to hold selectors. Simply:To your edit, use an
NSArray
/NSDictionary
/etc of selectors as your property instead. You are not allowed to use C arrays as properties in Objective C; they are not one of the supported types (which are ObjC objects, CF types and basic C 'Plain Old Data' types.)OK, on our comments below, you need to wrap the selector in an
NSValue
to allow you to use it in an objc container (becauseSEL
is a C pointer type):So now your table is an objc container stored as a property or ivar, and you use
NSValue
to wrapSEL
pointers withvalueWithPointer:
and get theSEL
out withpointerValue
.