Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im just wondering whether there is a way to call a method where i build the name of the method on the fly with a string.

e.g. I have a method called loaddata

-(void)loadData;

to call this i would normally call it like

[self loadData];

But i want to be able to call it dynamically with a string e.g.

NSString *methodName = [[NSString alloc] initWithString:@"loadData"];
[self methodName];

This is a stupid example but i hope you get my point. I am using it for databinding classes that I am setting up for my IPad application. Hard to explain but to get it to fire I need to work out how to call a method with a string.

Any ideas?

Thanks

share|improve this question
+1 for clear, simple question! – Linuxmint Dec 15 '10 at 5:12
The method I want to call is a function that returns an NSString. – IPadHackAndSlash Dec 15 '10 at 5:23

4 Answers

up vote 27 down vote accepted

You can try something like

SEL s = NSSelectorFromString(selectorName);
[anObject performSelector:s];
share|improve this answer
In this situation the method returns a value which is an NSString in one case. I get an error saying Lvalue required as left operand of assignment. This is my code: SEL s = NSSelectorFromString(@"getIDString"); [self text] = [boundEntity performSelector:s]; – IPadHackAndSlash Dec 15 '10 at 5:18
what is [self text],where you assign the value return getIDString. – Ishu Dec 15 '10 at 5:25
[boundEntity performSelector:s] returns a value of type that does not match the type of [self text]. I think you need to set @property for text and call [self setText:[[boundEntity performSelector:s]]]. – shreyasva Dec 15 '10 at 5:27

You need NSSelectorFromString.

share|improve this answer

You can use the objc_msgSend function. It takes two parameters, the receiver and the selector to send to it:

objc_msgSend(self, someSelector);

You'll need to turn your string into the appropriate selector using NSSelectorFromString:

NSString *message = [self getSomeSelectorName];
objc_msgSend(self, message);

The method also takes a variable number of arguments, so you can send messages with any number of arguments.

NSString *message = [self getSomeSelectorNameWithManyArguments];
objc_msgSend(self, message, arg1, arg2, arg3, arg4);
share|improve this answer

You could do the following:

NSString *methodName = [[NSString alloc] initWithString:@"loadData"];
if ([methodName isEqualToString:@"loadData"]) {
    [self loadData]
}

Let me know if you were looking for a different answer.

share|improve this answer
1  
totally unrelated but methodName = @"loadData" is not correct, you are comparing the pointers and this may or may not point to the same object, what you need is [methodName isEqualToString:@"loadData"] – shreyasva Dec 15 '10 at 5:32
5  
No, no it doesn't. Try putting @"butteredBoogers" in for the @"loadData" in that if() statement and see what happens. – bbum Dec 15 '10 at 6:12
2  
hint: methodName = @"loadData" is wrong for two reasons, one if which is that you can't use the == operator to compare NSString's, and the other is that ... – David Gelhar Dec 15 '10 at 6:26
2  
Ah, Sorry guys; I am new to iphone programming as you probably realize! :P – Linuxmint Dec 15 '10 at 17:01
this is hardcoded – Homero Barbosa Dec 27 '12 at 0:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.