Sparrow 0.9: New Xcode Templates

August 11th, 2010 Ronald Mathies 3 comments


Sparrow has released a new version of their game development framework. This release

Logo Sparrow Framework

contains some really great features among the most important:

  • Performance improvements!
  • Support for high resolution screens
  • Texture atlas generator
  • Some other medior and minor changes

For a complete list and code samples check out their over at:

No chicken: Sparrow 0.9 is out!

I have also updated the project and file templates for Xcode to include support for the 0.9 release. The following changes have been made:

  • Compatible with Sparrow Version 0.9
  • Changed installation method to using an Installer instead of extracting and installing it yourself.
  • Added iOS4 Compatibility for multitasking (as described in de Blog: Multitasking )
  • Changed base SDK and default deployment target to

Read more >

  • Add to favorites
  • Digg
  • del.icio.us
  • DZone
  • Reddit
  • StumbleUpon
  • Slashdot
  • Tumblr
  • Twitter
  • FriendFeed
  • Facebook
  • Google Bookmarks
  • MySpace
  • Faves

Safari: GShortcut extension

July 30th, 2010 Ronald Mathies No comments

The GShortcut extension for Safari enables you to have a browser bar containing all the shortcuts to Google’s service. The browser bar is fully customizable, you can re-arrange the icons, discard icons, group them together with space in between them and more…

GShortcut

Find out more about this plugin (intallation / usage details) over here.

  • Add to favorites
  • Digg
  • del.icio.us
  • DZone
  • Reddit
  • StumbleUpon
  • Slashdot
  • Tumblr
  • Twitter
  • FriendFeed
  • Facebook
  • Google Bookmarks
  • MySpace
  • Faves
  • Add to favorites
  • Digg
  • del.icio.us
  • DZone
  • Reddit
  • StumbleUpon
  • Slashdot
  • Tumblr
  • Twitter
  • FriendFeed
  • Facebook
  • Google Bookmarks
  • MySpace
  • Faves
Categories: Extension, Safari Tags: , ,

Objective-C: Detect when running on iPhone or iPad

July 26th, 2010 Ronald Mathies No comments

Apple has introduced a new macro which enables you to detect if you are running on a iPhone or on a iPad. The USER_INTERFACE_IDIOM() macro will return either UIUserInterfaceIdiomPhone or UIUserInterfaceIdiomPad corresponding to the device that it is running on.

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
// Running on a iPad
} else if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
// Running on a iPhone
}

The check can be used in the following way, since it is used at runtime you can use this check for example to generate a different UI for both the iPad / iPhone.

  • Add to favorites
  • Digg
  • del.icio.us
  • DZone
  • Reddit
  • StumbleUpon
  • Slashdot
  • Tumblr
  • Twitter
  • FriendFeed
  • Facebook
  • Google Bookmarks
  • MySpace
  • Faves
  • Add to favorites
  • Digg
  • del.icio.us
  • DZone
  • Reddit
  • StumbleUpon
  • Slashdot
  • Tumblr
  • Twitter
  • FriendFeed
  • Facebook
  • Google Bookmarks
  • MySpace
  • Faves

Apple releases Xcode 4 developer preview 2

July 26th, 2010 Ronald Mathies No comments

XCode LogoRegistered developers can now download Xcode 4 developer preview 2. Xcode 4 introduces some major improvements since version 3, the various application like Interface Builder are now integrated into Xcode itself making it easier to work with it. One of the biggest advantages is that the multi-window setup has now changed to single-window setup. So when you have multiple Nib files open you won’t have a large amount of small windows anymore.

Xcode 4: Singe Window

Another big advantage to the integration of Interface Builder with Xcode is that there is now more interaction between your code and the user interface designer. For example, it can now generate the outlets and actions for you. Just drag the component to your source file and it will make suggestions.

Xcode 4: Interface Builder Integration

Another nice feature that was already present in other popular development environments is the ability to suggest solutions to simple programming errors called Fix-It. It will… Read more >

  • Add to favorites
  • Digg
  • del.icio.us
  • DZone
  • Reddit
  • StumbleUpon
  • Slashdot
  • Tumblr
  • Twitter
  • FriendFeed
  • Facebook
  • Google Bookmarks
  • MySpace
  • Faves
Categories: Objective-C, Xcode Tags: , , ,