nbojja
nbojja

Reputation: 1655

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,

Upvotes: 5

Views: 8221

Answers (1)

Nathan de Vries
Nathan de Vries

Reputation: 15511

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.

Upvotes: 18

Related Questions