Quick notice: Will do some codingwork on the guts of playstate soon. With the goal to enhance interaction and meaning.
admin 23 Feb 2010 at 21:14Added pagination to lifestream.
admin 02 Feb 2010 at 00:36Added RSS-Feed for the whole PlayState Lifestream. Single user RSS-Feeds are planned.
admin 02 Feb 2010 at 00:19Users can now upload profile pictures -.-
admin 01 Dec 2009 at 16:04Just a quick notice: I want to make the App-Entries a little bit more Wiki-like in the future...
admin 01 Dec 2009 at 00:30Latest news: Users can now subscribe to PlayState-Newsletter in the admin-area. Just set the flag in the options.
admin 25 Nov 2009 at 00:46Just figured out a cool .css-Hack, that makes clever use of class-selectors and css-display-property:
.iphonehide hides elements with display:none on the iPhone. Selector .iphoneshow hides the element by default (on the web), but shows it on the iPhone (only) by overriding display:none with display:inline.
admin 02 Nov 2009 at 02:30Making plans to optimize lifestream-view for iPhone. Here is a little how-to.
admin 02 Nov 2009 at 00:13We are searching alpha-testers to test and co-develop our PlayState site!!
admin 26 Oct 2009 at 20:30Feature: Added links to single microposts. i.e. http://www.playstate.org/lifestream/show/15
admin 26 Oct 2009 at 20:29Haven't had the time yet to set up a "latest news" blog. But Twitter will solve this for now. http://www.twitter.com/playstate.
admin 24 Oct 2009 at 16:44Core Data: Apple's API for Persisting Data on iPhone and Mac OS X. Book released at the Pragmatic Programmer.
admin 14 Oct 2009 at 19:47Ok, it seems, that the lifestream feature is working for the first time!
admin 14 Oct 2009 at 02:01Hello World!!
admin 14 Oct 2009 at 01:43Easy, 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