Reputation: 6267
If I have an NSMutableArray where I added objects of different classes (e.g. NSString, NSMutableString, NSProcessInfo, NSURL, NSMutableDictionary etc.) Now I want to fast enumerate this array, so I tried:
for (id *element in mutableArray){
NSLog (@"Class Name: %@", [element class]);
//do something else
}
I am getting a warning in Xcode saying
warning: invalid receiver type "id*"
How can I avoid this warning?
Upvotes: 2
Views: 2093
Reputation: 25001
The code is almost correct. When you use id, it's already implied to be a pointer, so you should write it as:
for (id element in mutableArray){
NSLog (@"Class Name: %@", [element class]);
//do something else
}
Upvotes: 11