I made an app with cocos2d and it runs fine. BTW, it has toolbar which is not shown but exist in the bottom of the app.
How can I remove the toolbar region and draw my own images on that region?
Thank you for your proceeding.
-Kim
A fast, easy to use, free, and community supported 2D game engine
I made an app with cocos2d and it runs fine. BTW, it has toolbar which is not shown but exist in the bottom of the app.
How can I remove the toolbar region and draw my own images on that region?
Thank you for your proceeding.
-Kim
in your info.plist add the property "Status bar is initially hidden" as true.
I think you can also do the same in code in your
- (void)applicationDidFinishLaunching:(UIApplication *)app:
[app setStatusBarHidden:true]Joao is right although the plist is better, doing by code the toolbar is sawn a while.
Great, Thank you for your proceeding.
BTW, my question is not about statusbar but toolbar which is located in the *bottom* of the view.
From the top, stautus bar is located and navigation bar is followed the a view is. Lastely toolbar is located and my question is remove this.
Thank you.
You must log in to post.