Showing posts with label IOS 7. Show all posts
Showing posts with label IOS 7. Show all posts

Monday, May 30, 2016

Hammer Head Premium

The fight now start from your garden.

Make the bunny away from your garden by touch on them when they go up.
Face to the boss to protect your garden.

Time Mode: A huge wave of mode is coming. Fight and take away as much as you can before the time is
Quick Touch: Touch at much at you can and get higher score

Note: You will lose your hearth if you touch miss.

Link: Download


More Game and More Fun


Fighting with Cute Animal to Protect your Garden


Faced with the bigger Boss


Race with time to kill more animal


Monday, April 11, 2016

Fighting Number 24 - New Way to improve your mind

Why number is 24?

24 is present for 24 hours a day. With this game, you will good to calculate your time in your day.

Do you know 3 days have 72 hours or you can divide a day to 3 same part with 8 hours a part? You will calculate this math when playing my game.

72 / 3 = 24
3 * 8 = 24

and many more …

Because 24 = 4!. It can divide many number from 1, 2, 3, 4, 6, 8 (6 from 1-9, so many from other) and can make many combination to think.
Just play with this number and you will see how far your mind is improving when play with it.

+ Why you need to play?
With more than 400 combinations, you will get all of case with your time
Each game is so short and help you relax for a little time, you can come and do later.



Time Mode will test your mind

Link: Download 




The goal is creating number 24


This is our goal


More than 400 combine of number for you to challenge your mind

Tuesday, March 3, 2015

Create level with pList

With the small game, you need some database to easy create a level map. CoreData is so hard for your little game. So pList is suitable for you to create a small data for your game.

This is easy to change and give more level to your games. It contains all the base information for your game and you can change it very easy.
This is good for Sprite Kit, too. All this come from Apple so they will perfect with other.

So first we should know how to create a Plist File:

+ Just create a new File in your Xcode project and you will see it from


* This time you only need to create your pList to start store your data. This will be constructor like this:
- You have 2 types of collection data to store an data with have many properties: Dictionary and Array
+ Dictionary to store the different type of property
+ Array to store to similar property for your object

- The other types is used to store  the data for you to use this:
+ Boolean
+ Data
+ Date
+ Number
+ String

- This will very easy to get your data from pList:

    NSString* lkPath = [[NSBundle mainBundle] bundlePath];
    NSString* lkFinalPath = [lkPath stringByAppendingPathComponent:@"LKGameData.plist"];
    NSDictionary *lkPlistData = [NSDictionary dictionaryWithContentsOfFile:lkFinalPath];

=> This code will get all the data from pList for ready to create your level.
- You can check all the property in this pList by using:

    NSLog(@"The property list contains: %@", lkPlistData);

=> This code will show all your property list in this pList and you can check them for right input 

Wednesday, January 29, 2014

Sprite Kit: Introduction to new century

Sprite Kit is the new engine from Apple

It is the way that you can choose to go. Apple have a lot of plan to the future that you can join in.

With Sprite Kit, you can:
- Develop game for iPhone, iPad
- Develop game for Mac OS
+ With all new function of iOS and Mac OS

In future, you can:
- Develop game for Apple TV
- Develop game for Big iPad (12.9 inches)
- Develop game for iWatch (Apple Watch)

=> This engine is belong and main tool of Apple, so you will make your game before any tools.

Just choose right engine for your process and you never regret.

Friday, January 17, 2014

Working with Sprite Kit

Sprite Kit is a new engine from Apple. It is started using from IOS 7.

Sprite Kit is a powerful graphic framework not only for IOS 7, it is also use for Mac. You can create side shooter, puzzle or a platform if you want. It is the recommend tool for any developer have interesting in Apple product.

It is the flexible framework that allow you can control all your object (SKNode) without knowledge about OpenGL. It means you can setup position, rotation, gravity and many more thing. All of child node can easy access the parent node and call function without creating new delegate. It is so awesome framework for new programmer!

It is a big step for Apple developer. All of this engine is free to use without paying. It is a big advance   for Apple developer with other developer.

The only disadvantage of this engineer is it only work with IOS 7 and more. But it will be disappear  after IOS 7 become more popular.

This blog will give you some things about Sprite Kit and give you the reason to choose this as your main tool to develop game.