Live data from Hacker News

iOS Libraries

appdevmag.com

11–20 of 78 posts

Re: iOS Libraries

#13

Are 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.

Please don't. I'd much rather have a consistent UI on my phone instead of each dev brewing up his own controls.

Re: iOS Libraries

#16
> 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 insufficient or inferior to RKL, that's a different issue).

Re: iOS Libraries

#17
post #14

I’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

You shouldn't have. I'm using UIAlertView+Blocks for years now. (PLBlocks in the 3.x times)

https://github.com/steipete/PSFoundation/blob/master/Utils/P...

Also check out PSFoundation, great stuff in there.

Re: iOS Libraries

#18
The list is quite crappy. E.g. :GData client" doesn't help you unless you really need it. If you search for the little things, like weak-linked yet self deleting delegates, or good image crunching stuff, check out PSFoundation.

https://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…

The Syntax for NSRegularExpression is really awful. Main reason why I stick with RegexKitLite.

Re: iOS Libraries

#20
This 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."

Post reply on HN