FEATURED
Easy, Modular Code Sharing Across iPhone Apps: Static Libraries and Cross-Project References
020200 31 Aug 2010 at 00:26Thia are also very cool swipe- and animation-effects in jQuery.
020200 16 Aug 2010 at 14:12Making a swipe-effect like on iDevices in jQuery.
020200 16 Aug 2010 at 13:45JSON-Parsing / Rails - Obj-C
Try to avoid Arrays, if not wanted. Best, to do this an the server-side, because fixing parsing-problems in Obj-C can be a debugging-nightmare.
Ruby got great array-parsing methods to do so. For example:
for f in friends
postings.concat(f.postings) if f.postings.length > 0 ### THIS HERE
postings.compact!
postings.uniq!
postings = postings.sort_by { |p| p.created_at }
postings.reverse!
end
Better than
for f in friends
postings << f.postings if f.postings.length > 0 ### THIS, IN THAT CASE
postings.compact!
postings.uniq!
postings = postings.sort_by { |p| p.created_at }
postings.reverse!
end
020200 04 Aug 2010 at 16:14Glyphish great free UI-Icons for iPhone, iPod Touch and iPad.
020200 19 Jul 2010 at 01:55Quick test /ignore http://maps.google.com/maps?q=London
020200 14 Jul 2010 at 14:12A UISegmentedControl with custom color
020200 12 Jul 2010 at 18:42Messed around a lot with the Three20 Framework and decided against it. Most of the things really feel like "reinventing the wheel" - opposed to enhancing UIKit. The documentation is also far away from being great.
020200 11 Jul 2010 at 19:29Finally a great answer, that explains all about the issues with viewWillAppear and viewDidAppear.
020200 26 Jun 2010 at 17:57Deploy Apps (Binaries) for different targets, supporting also older OS without having troubles with the linker.
020200 25 Jun 2010 at 21:40Very helpful reading, if strange EXC_BAD_ACCESS errors occur, for example if using "objectWithString" initalisation. Or having jams with the SBJSON-Object at the JSON-libary.
020200 22 Jun 2010 at 15:12Remove whitespaces and other character-sets with NSCharacter.
020200 21 Jun 2010 at 13:51A nice way to fade the splash-screen (Default.png).
020200 15 Jun 2010 at 14:36Some custom Color Picker / Selector for iPhone / iPod.
020200 15 Jun 2010 at 14:16Code-example "Get color at x, y"
020200 15 Jun 2010 at 14:14