I have an array of UIView
objects. I want to call - (NSArray *)filteredArrayUsingPredicate:(NSPredicate *)predicate
on this array to get array of MyCustomView
objects.
How to code predicate with "isKindOf:"?
Try (depracated)
[NSPredicate predicateWithFormat: @"className == %@", [someObject className]]
Or
[NSPredicate predicateWithFormat: @"class == %@", [someObject class]]
I got errors using Jef's method. This worked for me, though.
NSPredicate *predicate = [NSPredicate predicateWithFormat:
@"self isKindOfClass: %@", class];
Source: https://stackoverflow.com/a/2556306/168594
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With