访问 UIScrollView 中动态加载的 Labels

发布于 2024-10-15 09:54:25 字数 183 浏览 2 评论 0原文

我正在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久隐师 2024-10-22 09:54:25

添加 UILabel 时,您需要设置它的标签。例如

[myLabel setTag:2]; //or set it to some dynamically produced integer

,然后,当您想再次访问该标签时

UILabel *addedLabel = [myScrollView viewWithTag:2];

,您可以删除该标签或执行您通常执行的任何其他操作。

不要使用 0 或 1 标签,因为它们是默认值,您应该使用相同标签进行查看。

When you add the UILabel you need to set it's tag. Eg

[myLabel setTag:2]; //or set it to some dynamically produced integer

Then when you want to access the label again you do

UILabel *addedLabel = [myScrollView viewWithTag:2];

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文