iOS Libraries
11–20 of 78 posts
Re: iOS Libraries
#12Link doesn't work. "appdevmag.com" doesn't work. Googled "site:appdevmag.com" and got zero hits. WTF?
Re: iOS Libraries
#13Are there similar libraries for Android development? The hardest problem I have is with making the UI look better than standard/default UI on both iPhone and Android. Libraries that made that easier would be awesome.
Re: iOS Libraries
#14Re: iOS Libraries
#15Re: iOS Libraries
#16NSRegularExpression 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 insufficient or inferior to RKL, that's a different issue).
Re: iOS Libraries
#17I’ve written a block-based UIAlertView and UIActionSheet wrapper that makes working with alerts and action sheets less painful (no more button indexes and alert tags): https://github.com/zoul/Lambda-Alert
https://github.com/steipete/PSFoundation/blob/master/Utils/P...
Also check out PSFoundation, great stuff in there.
Re: iOS Libraries
#18https://github.com/steipete/PSFoundation
And if you wanna have it set up for you, just clone the app template: https://github.com/steipete/PSiOSAppTemplate
Re: iOS Libraries
#19> 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…
Re: iOS Libraries
#20"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."