如何在 cocos2d 中以编程方式创建新的 UIView? [英] How to create a new UIView programmatically in cocos2d?

查看:19
本文介绍了如何在 cocos2d 中以编程方式创建新的 UIView?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 cocos2d 中以编程方式在按钮单击时创建一个新的 UIView.请帮助我提供一些示例代码.提前致谢.

I want to create a new UIView on button click programmatically in cocos2d. Kindly help me with some sample code. Thanks in advance.

推荐答案

你必须创建一个类似的按钮-

You have to create a button like-

UIButton* myButton = [UIButton buttonWithType:UIButtonTypeCustom];
myButton.frame = CGRectMake(30, 70,100,38); //set frame for button

[myButton setTitle:@"subview" forState:UIControlStateNormal];
[myButton addTarget:self action:@selector(buttonClicked:)forControlEvents:UIControlEventTouchUpInside];

或者您可以使用 CCMenu 作为按钮.

Or you can use CCMenu as a button.

然后编写事件处理函数-

And then write the event handling function-

-(void)buttonClicked:(id)sender
{
        UIView *myview=[[UIView alloc] initWithFrame: CGRectMake(0, 0,320,480)];
        myview.backgroundColor=[UIColor redColor];
        [[[CCDirector sharedDirector] openGLView] addSubview:myview];
        [myview release];                   
}

}

这篇关于如何在 cocos2d 中以编程方式创建新的 UIView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆