Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to search nsmutablearray in objective c-iPhone app

I am reading a RSS feed into nsmutablearray. i want to search the xml feed. for that i want to search nsmutablearray. i am very new to iphone apps. can some one helpme with this..

thanks,

like image 355
nbojja Avatar asked Jun 29 '09 08:06

nbojja


1 Answers

You can do "searching" of arrays using predicates, like so:

NSMutableArray* names = [NSMutableArray arrayWithObjects:@"Andy", @"Bart", @"Bob", nil]; 
NSPredicate* predicate = [NSPredicate predicateWithFormat:@"SELF beginswith[c] 'b'"];
NSArray* namesStartingWithB = [names filteredArrayUsingPredicate: predicate];
// namesStartingWithB now contains @"Bart" & @"Bob"

You should look at the NSArray and NSPredicate documentation for more information. If you're after information specific to parsing XML (i.e. an RSS feed), you should check out Matt Gallagher's article on using libxml2 for XML parsing and XPath queries in Cocoa.

like image 198
Nathan de Vries Avatar answered Sep 30 '22 18:09

Nathan de Vries