我正在尝试在我的UIViewControllers的 super View 中找到我的UILabels。
这是我的代码:
func watch(startTime:String, endTime:String) {
if superview == nil {println("NightWatcher: No viewcontroller specified");return}
listSubviewsOfView(self.superview!)
}
func listSubviewsOfView(view: UIView) {
var subviews = view.subviews
if (subviews.count == 0) { return }
view.backgroundColor = UIColor.blackColor()
for subview in subviews {
if subview.isKindOfClass(UILabel) {
// do something with label..
}
self.listSubviewsOfView(subview as UIView)
}
}
这是在Objective-C中推荐的方式,但是在Swift中,除了UIViews和CALayer我什么都没有。在提供给此方法的 View 中,我肯定有UILabels。我想念什么?
我的UIViewController中的调用:
NightWatcher(view: self.view).watch("21:00", endTime: "08:30") // still working on
最佳答案
使用函数式编程概念,您可以更轻松地实现这一目标。
let labels = self.view.subviews.flatMap { $0 as? UILabel }
for label in labels {
//Do something with label
}
关于ios - 在Swift中的UIView中找到UILabel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25412606/