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

I'm learning ObjectiveC and ran into a problem relating to introspection. Basically, I'm looping through an array of objects and determining if they accept the lowercaseString selector. If they do, I call that selector on the object. After I ensure that the object responds to that selector, I call it. However, when I do, I get this warning: "warning: 'NSObject; may not respond to '-lowercaseString'"

Although the code works fine as written, I'd like to not get the warning. I'm assuming that there's a "right" way to make sure that I don't get that warning (i.e. without just turning warnings off). Any ideas?

NSMutableArray *myArray = [[NSMutableArray alloc] init];

[myArray addObject:@"Hello!"];
[myArray addObject:[NSURL URLWithString:@"http://apple.com"]];
[myArray addObject:[NSProcessInfo processInfo]];
[myArray addObject:[NSDictionary dictionary]];

SEL lowercaseSelector = @selector(lowercaseString);

for (NSObject *element in myArray) {
    if ([element respondsToSelector:lowercaseSelector]) {
        NSLog([element lowercaseString]); // Warning here
    }
}
share|improve this question
Also, if I'm getting the "selector" terminology wrong, please correct me. :) – Tyson Jul 8 '09 at 3:00
3  
Don't pass non-constant strings to NSLog. There's a security risk. You may think you're safe in this case, but don't get in the habit of it. You'll inevitably end up doing it in a case that does open a security hole. – kperryua Jul 8 '09 at 3:54
Do you have a link to more information about this security hole? I'm definitely interested in reading more about it. – Tyson Jul 8 '09 at 4:11
5  
You should always pass a format string for the first arg of NSLog. If any of the elements in your array contain formatting characters, NSLog will try to read the associated arguments, but you won't have passed any. Instead write NSLog(@"%@", [element lowercaseString]);. – Jim Correia Jul 8 '09 at 4:59
It's not just a security hole, it's a potential crash. If the string contains %s or %@ it's going to indiscriminantly treat the random bytes on the stack as a pointer, deference them and if you used %@, send the [self description] message to it. As Jim says, and for any function that takes a format string (like stringWithFormat:), ensure that you pass a format. – Jeff Laing Mar 5 '12 at 5:00

4 Answers

up vote 15 down vote accepted

You can also use id which is any type of object.

for (id element in myArray) {
    if ([element respondsToSelector:lowercaseSelector]) {
        NSLog([element lowercaseString]);
    }
}
share|improve this answer
I figured NSObject would be the proper one, but, indeed, id seems a better way of doing it. – Tyson Jul 8 '09 at 3:43
as long as you don't need to call retain or release on element ;-) – Ben Gotow Jul 8 '09 at 3:46
what's wrong with calling retai/release on an id? – FigBug Jul 8 '09 at 4:05
If you have an object that conforms to a protocol and you use id<myProtocol> as the data type for it, it complains that retain/release (and other NSObject functions) aren't found in the protocol. It just assumes the protocol will define every method called on the object. Works fine otherwise - that particular situation drives me crazy, though! – Ben Gotow Jul 8 '09 at 5:15
2  
The workaround to this is to make all your protocols conform to <NSObject (which is a protocol as well as a class). Anyway, this doesn’t apply to plain id. – Jens Ayton Jul 8 '09 at 9:49
show 1 more comment

Just cast your NSObject to an NSString before calling the function:

for (NSObject *element in myArray) {
    if ([element respondsToSelector:lowercaseSelector]) {
        NSLog([(NSString*)element lowercaseString]); // No warning!
    }
}
share|improve this answer
But what if the object doesn't support all the selectors that NSString supports? My OOP-sense tells me that that would be bad. I'm just checking for one selector, regardless of what superclass it belongs to. – Tyson Jul 8 '09 at 3:41
Well, you're assuming that -lowercaseString returns an NSString, since that's what NSLog expects for the format string. If, for whatever reason, it doesn't return an NSString, then you're passing something other than an NSString as the format string, and NSLog will choke on it. – Peter Hosey Jul 8 '09 at 6:04
The safest way would be to get the lowercaseString, store it in a variable, and test whether it's a kind of NSString. You probably don't need to be that paranoid, though, and if you're not going to be, you might as well declare the variable as, or cast the return value to, NSString *. – Peter Hosey Jul 8 '09 at 6:05

How about using performSelector:?

SEL lowercaseSelector = @selector(lowercaseString);

for (NSObject *element in myArray) {
    if ([element respondsToSelector:lowercaseSelector]) {
        NSLog([element performSelector:lowercaseSelector]); // No warning
    }
}

This would get rid of your compiler warning.

share|improve this answer
Ah, this seems like a nice way to do it. Thanks for the response. – Tyson Jul 8 '09 at 17:03

Casting as id removed the warning.

if ([self.content respondsToSelector:@selector(setDelegate:)])
{
    [(id)self.content setDelegate:nil];
}
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.