Tagged Questions
0
votes
2answers
30 views
calling functions and passing information between views
Thanks in advance for your help!
In the main ViewController.m of my project I am adding a customized tableView like so:
messageController = [[MyMessagesController alloc] ...
1
vote
3answers
527 views
iPhone app crash when call self.addChild in CCSprite subclass ..?
I have downloaded the ABC open source And turning source code into cocos2d 1.01.
Now I'm having problems with the init Sprite Subclass. ( my subclass is @interface OrbSprite : CCSprite )
This Code is ...
3
votes
3answers
1k views
addChildViewController alternative for iOS 4.3
I would like to use the same functionality of addChildViewController, but for the version 4.3 (addChildViewController is only available in version 5).
Thanks in advance.
0
votes
3answers
591 views
Iphone UITabBarItem image not shown
My question is how I could add the icon of a childViewController of an UITabBarController. My code is:
UITabBarController *tabBar=[[UITabBarController alloc]init];
MyUIViewController ...
0
votes
2answers
4k views
addChildViewController and remove it
In my project's main ViewController, once users of the app click the "Start" button, I add the next view to the screen:
UIViewController *nextController = [[GamePlayViewController alloc] ...
15
votes
1answer
20k views
when to use addChildViewController vs pushViewController
I just watched a 2011 WWDC presentation on "Implementing UIViewController Containment" (here's a link to the video)
They mentioned both of these ways of adding viewControllers to the screen, and I ...
0
votes
0answers
74 views
can I add same ccspirit object after remove it?
I have total 20 images in NSMutableArray of ccspirit objects, and I want to show them on screen moving moving upward, I add them to as [self addChild:p] as below
-(void) callMethod {
static int x = ...