On Tue, Jan 18, 2011 at 2:04 PM, Bing Li <[email protected]> wrote: > I am a new developer on iPad. I have a search engine which is on Solr ( > http://lucene.apache.org/solr). My application on iPad needs to interact > with Solr. Any mature APIs or frameworks are available to do that?
I don't know of any Objective-C frameworks specifically geared towards Solr, but it's just HTTP and XML. No reason you can't use -[NSXMLParser initWithContentsOfURL:]. Or you can use NSURLRequest to fetch the data directly, and then -[NSXMLParser initWithData:]. Or iOS contains libxml2 so you can use that if you want. _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
