访问 UIScrollView 中动态加载的 Labels
我正在开发一个 iPhonne 应用程序,它要求我在特定操作上动态地将 UILabel 添加到 UIScrollView 中,然后从同一视图中删除选定的标签。
我可以添加标签,但无法访问已添加的标签以进行删除。删除标签后,其余标签将在视图中自动调整。
你能帮我解决这个问题吗?
提前致谢!!.... :)
I am working on an iPhonne app that requires me to dynamically add a UILabel to a UIScrollView on a specific action and then delete the selected label from the same view.
I am able to add the labels, but unable to access the labels added to delete. Once the labels are deleted the rest of them shall auto adjust in the view.
Can you please help me out in this.
thanks in advance!!.... :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加 UILabel 时,您需要设置它的标签。例如
,然后,当您想再次访问该标签时
,您可以删除该标签或执行您通常执行的任何其他操作。
不要使用 0 或 1 标签,因为它们是默认值,您应该使用相同标签进行查看。
When you add the UILabel you need to set it's tag. Eg
Then when you want to access the label again you do
Then you can remove the label or do anything else you normally do
Don't use tags of 0 or 1 as they are the defaults and you should have to views with the same tag.