如何获取子视图中添加的值

发布于 2024-11-16 15:17:07 字数 237 浏览 0 评论 0原文

如何获取添加到 UIView 的子视图的值。

我在子视图中添加了五个按钮。

现在我需要从子视图中获取第二个、第三个、第四个。

for(id btn in [myview subviews]){

.... which prints all the elements added in view.
}

如何将特定元素添加到子视图中。

@提前致谢

How to get the value of subviews which added to UIView.

I Have added five button to the subviews.

Now i need to get 2nd 3rd 4th from the subviews.

for(id btn in [myview subviews]){

.... which prints all the elements added in view.
}

how to get specific elements added to subviews.

@thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ぶ宁プ宁ぶ 2024-11-23 15:17:08

如果我理解正确的话,[[myview subviews] objectAtIndex:2]

依赖子视图中项目的顺序是安全的*ish*。尽管它们可以作为其他操作的副作用进行重新排列。您最好使用数据成员或分配标签

If I understand you right, [[myview subviews] objectAtIndex:2].

It’s safe*ish* to rely on the order of items in subviews. Though they can be rearranged as side effects of other operations. You’d be better off using data members or assigning a tag.

旧情勿念 2024-11-23 15:17:08

创建按钮时存储指向按钮的指针,或者为每个按钮分配唯一的标签值并通过其标签获取按钮。

Either store pointers to the buttons when you create them, or assign unique tag values to each button and fetch the buttons by their tags.

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