更改 UIScrollView 中每个 UILabel 的颜色
是否可以循环遍历 UIScrollview
中的所有 UILabel
并更改颜色?
Is it possible to loop through all the UILabel
s in my UIScrollview
and change the color?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设它们都是滚动视图的子视图(第一级子视图),而不是其中的容器视图...
如果标签位于滚动视图内的其他视图内,则必须递归到每个子视图并做同样的事情,但这只是上面的一个非常简单的步骤。例子:
Assuming they’re all subviews (first-level children) of the scroll view, not of container views inside it...
If the labels are inside other views inside the scroll view, you’ll have to recurse into each of the subviews and do the same thing, but that’s a pretty simple step from the above. Example:
尝试
try