i tried MBProgressHUD. it is way too heavy. so i wrote my own, smaller one: http://www.platinumball.net/blog/2010/02/27/uiprogresshud-re...
I'm not sure what you found heavy about it; it's feature-full, yes. (I'm a bit familiar with the code because I used it in a project of my own and have my own fork of it at GitHub.)
iOS Libraries
61–70 of 78 posts
Re: iOS Libraries
#62Re: iOS Libraries
#63I'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.
These libraries exist because iOS (IMHO) is too low level in places, such as HTTP requests. There is an interface you have to implement in order to make HTTP requests, and you have to handle all the data (bytes) that come in incrementally. It is very handy to have a library that handles the connection, caching, redirects, errors, etc.
Re: iOS Libraries
#64A few days ago I released the DateCalculations library which was inspired by Ruby on Rails calculation library. I'll leave it here just in case: https://github.com/oscardelben/DateCalculations
Re: iOS Libraries
#65Is there a good way to authenticate youtube? The GData stuff I've found was janky at best. It worked on a newly created account, but didn't work on my age old pre-acquisition account
Re: iOS Libraries
#66ShareKit http://www.getsharekit.com/ is also an awesome library for sharing content on social sites.
I was just going to mention it. I think it's way better than the facebook library mentioned in the article. I'm using for my upcoming app and it was a snap to use it for facebook and twitter
Re: iOS Libraries
#67No clue what happened to the original, but here's a post which lists what they had on their list: http://sordyl.info/2011/03/15/10-ios-libraries-to-make-your-... MBProgressHUD – Progress Indicator Library ASIHttpRequest – HTTP Network Library JSON Framework – JSON Support Flurry – Detailed Usage Statistics RegexKitLite – Regular Expression Support Facebook iOS SDK – Facebook API Library SDWebImage – Simple Web Image…
My fear/guess is that something that ASIHTTPRequest is using is assuming that it can bombard the socket with data even when the output buffer gets full. At least that's the initial problem I had when I was writing my replacement, and after staring at ASIHTTPRequest for days, I can't think of anything else.
Re: iOS Libraries
#68JSONKit ( https://github.com/johnezang/JSONKit ) is quite a bit faster than the mentioned json-framework. Also, an alternative to SDWebImage is EGOImageLoading ( https://github.com/enormego/EGOImageLoading ), which might or might not be better (Instagram uses it). We've been using both libraries quite happily for our new startup, forkly.
1. About three weeks ago.
Re: iOS Libraries
#69Not just a library, and something that really makes development for iOS easier is Unity. http://unity3d.com It may not be free, but it is well worth the money. I use it for non-game apps because development is so rapid.
Re: iOS Libraries
#70Earlier quoted context omitted.
I was just going to mention it. I think it's way better than the facebook library mentioned in the article. I'm using for my upcoming app and it was a snap to use it for facebook and twitter
I played with ShareKit for a while and it does include an impressive range of sharing options (and really helped me understand how OAuth works). However I found that the sharing functionality seemed to be tied to a specific visual presentation, which I didn't like. In the end, I decided not to use it because it didn't match the look and feel I wanted for my app.