Game Sneak Peak

August 16th, 2009

game_peaking

That all for now, stay tuned for more.

There are more ways to stay up to date with us.

August 11th, 2009

Facebook Page
Twitter
FriendFeed

And that’s just the beginning. As we grow we will add more ways to get in touch with the community. Without community we’re nothing and we know it.

iPhone: cocos2d: How to change Label text color

July 29th, 2009

Here’s a fun and easy way :)

my_label = [[Label labelWithString:str fontName:@"Helvetica" fontSize:24.0] retain] ;
[ my_label  setRGB:0 :0 :0 ] ;

This post will be very VERY short.

July 19th, 2009

Do not enumerate over the mutable array, make a copy of the array instead. That’s it. This will save the pain of debugging.
Cheers.

iPhone: Hide Status Bar

July 15th, 2009
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];

or

in info.plist add UIStatusBarHidden key and set it to 1

1337 Birthday Present

July 8th, 2009

We are 1337. When we give presents nothing less then 1337 will do. What’s more 1337 than a private plane tour of the Rockies? Nothing.

Photo report:

rockies

rockies2

private_plane3

private_plane4

private_plane5

private_plane6

private_plane7

iPhone: Error "Could not support development."

June 26th, 2009

Problem:

Organizer says “Could not support development.”

I just came across this error while trying to test an app on the device.

Solution:

Reboot your device. Simple as that.

Real Programmers Eat Real Pizza

June 25th, 2009

real_pizza_yeah

Enough said.

iPhone: NSString trimming whitespace characters

June 22nd, 2009

If you need to trim whitespace characters at the start and end of a NSString, here’s an easy way:

existingStr = [ existingStr stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] ;

iPhone: How-to test multiple touches on the iPhone Emulator

June 20th, 2009

In the iPhone Emulator window hold OPTION key two touch areas will appear this gives the ability to test “pinch” functionality (i.e. zoom-in, zoom-out). Now while holding OPTION key also press SHIFT key, now you can emulate two finger drag, swipe, etc.