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

I wat to do something like this:

if (viewController.mapView) [viewController.mapView someMethod];

However, if mapView is not a class variable, this crashes. How do I check if mapView exists?

share|improve this question

3 Answers

up vote 14 down vote accepted

For ordinary selectors, you can use respondsToSelector:. I'm not certain if this will work for new-style property access (as it appears you are using in this example). To test if a class responds to a given selector, use instancesRespondToSelector:.

share|improve this answer
2  
Property getter is a method with a name that matches the property and no arguments (i. e. no trailing colon in the signature). – Seva Alekseyev Jul 16 '12 at 20:47
1  
Wow, Objective-C is not one to be concise is it? – chaiguy Mar 7 at 0:28

Oops, found it:

if ([vc respondsToSelector:@selector(mapView)]) {

  [[vc mapView] viewWillAppear:YES];

}
share|improve this answer
2  
You can also use it on synthesized property methods like setMapView: – Nick Bedford Oct 8 '09 at 1:50
1  
or any property with an accessor and setter. @property & @synthesize does most the work for you in most cases. what i'm not sure about is if your getter isn't standard, for example @property (getter=notStandardGetter) NSString *aString; – pxl Oct 8 '09 at 8:58

Also, As Jason poninted out here, you can also use NSSelectorFromString to dynamically check at runtime. E.g.

if ([self respondsToSelector:NSSelectorFromString(elementName)]) 
{
    [self setValue:elementInnerText forKey:elementName];
}
share|improve this answer

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.