Tilt the body and carry a ball to a goal.
It's the simple game which can play by a short time, so it can be used for the time pass.
The original is put in here and the memo of the development technique of iPhoneSDK is written chiefly for me. I want to write topics other than the introduction and iPhoneOS of other games and convenient application programs, etc. The machine is translated from Japanese into English, and acknowledge a hard to read point, please.
// Get Language Array
NSArray *languages = [NSLocale preferredLanguages];
// get First Language
NSString *currentLanguage = [languages objectAtIndex:0];
// Acquired character strings are compared
if([currentLanguage compare:@"ja"] == NSOrderedSame) {
// japanese
} else {
// other language
}