如何在运行时无限次添加新对象?
假设屏幕上有一个标签和一个按钮。当用户按下按钮时,它会在已有标签下方创建一个新标签,并且可以无限次执行此操作。
我不需要创建新职位的代码。我只是想知道如何添加新标签?我也可以对一堆与之相关的变量做同样的事情,比如创建一些 NSString 吗?
Say I have a label on the screen, and a button. When the user presses the button, it makes a new label underneath the one already there, and it can do this an unlimited number of times.
I don't need the code for making a new position. I'm just wondering how I would add a new label? Can I do the same with a bunch of variables related to it too, like say create a few NSStrings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您所要做的就是创建一个 UILabel 视图,并以编程方式将其作为子视图添加到当前视图。
What you have to do is to create an UILabel view and add it to the current view as a subview programmatically.