http://www.platinumball.net/blog/2010/02/27/uiprogresshud-re...
iOS Libraries
41–50 of 78 posts
Re: iOS Libraries
#42> Regular Expressions are a really powerful tool, and the absence of support for regular expressions in the iPhone SDK seems to be a glaring omission. NSRegularExpression was added to the iOS SDK in 4.0. Not available if you still aim to be 3.x-compatible (for iPhones and first-gen Touch), but 4.0 has been out for 9 months now, I think it's time to bury this one (note: you could still find NSRegularExpression insuffi…
The Syntax for NSRegularExpression is really awful. Main reason why I stick with RegexKitLite.
Re: iOS Libraries
#43I've never tried iOS development, and I'm a bit surprised by many of these library recommendations. For example HTTP requests, regular expressions and progress indicators strike me as something your platform definitely should provide you with. Of course it's great that there are quality libraries to fill in where the platform falls short.
Re: iOS Libraries
#44Re: iOS Libraries
#45ASIHttpRequest (hated handling network requests before), RegexKitLite (still superior to the recent NSRegEx) and Flurry (why doesn't apple give you this level of detail) are fantastic. Flurry's size is a bit of a downer, but implementation is easy.
Re: iOS Libraries
#46Also, for game developers, Cocos2D iphone is pretty good too. It's reasonably lightweight, fast, and completely free. Pair that up with Box2D or chipmunk, which it comes with, and you have a complete game engine at no cost, with a good amount of community support. edit -- link: http://www.cocos2d-iphone.org/
I played with Cocos2d and I liked it a lot. Do you know the differences between Cocos2d and the sparrow framework?
Re: iOS Libraries
#47Any recommendations for libraries related to user account sign-up / authentication? I'm working on building a multi-player game and want to avoid using Facebook (or another 3rd party) for user authentication.
Re: iOS Libraries
#48I think we blew up "Flurry Analytics"; attempting to register just keeps returning the registration page, with no error messages...
Flurry's registration portal should be able to handle HN traffic without any trouble. I'll e-mail them. EDIT: This looks like a bug, but a bug caused by a user registering with an e-mail already in the system. I'm guessing you've either used Flurry (or Pinch Media, which merged with Flurry) before. Try the 'forgot your password?' link, it'll send you a new one.
...excellent product however and I look forward to using it!
Re: iOS Libraries
#49Re: iOS Libraries
#50This one is of promise. We are evaluating it and trying it out (and sometimes ripping it out). http://restkit.org/ "RestKit is an Objective-C framework for iOS that aims to make interacting with RESTful web services simple, fast and fun. It combines a clean, simple HTTP request/response API with a powerful object mapping system that reduces the amount of code you need to write to get stuff done."
I'd recommend others try it out if you aren't afraid of dipping into their code. I found it to be quite readable and the two toasters team have shown themselves to be very good at communicating with other people interested in the project. My hope is that they will continue to work through the kinks and RestKit can become a standard library for apps dealing with RESTful services.