关于 UIViews 和 UITextFields 的一些问题
UITextFields只能添加到UIViews吗?
1a。如果他们不能,如何将 UITextFields 添加到 CCSprites?
1b。如果他们不能,我如何以编程方式制作自己的 UIView 而不使用 Interface Builder? (欢迎链接)
我有一个场景,如何从中显示自定义 UIView?
Can UITextFields only be added to UIViews?
1a. If they cant, how do you add UITextFields to CCSprites?
1b. If they cant, how do I make my own UIView programmatically not using the Interface Builder? (links welcome)
I have a scene, how do I display a custom UIView from it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITextField是UIView的子类,可以添加到所有UIView类和子类中。我不知道CCSprites类是什么;如果这个类有一个像
-(void)addView:(UIView*)view;
这样的方法,那么你可以使用这个方法。要以编程方式创建 UIView,请使用以下代码:
UITextField is UIView subclass and can be added to all UIView classes and subclasses. I don't know what is CCSprites class; if this class have a method like
-(void)addView:(UIView*)view;
then you can use this method.For creating UIView programmaticaly use this code: