Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find UILabel in UIView in Swift

I'm trying to find my UILabels in my superview of my UIViewControllers. This is my code:

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)
    }
}

This is how it is recommended to in Objective-C, but in Swift I get nothing but UIViews and CALayer. I definitely have UILabels in the view that is supplied to this method. What am I missing?

The call in my UIViewController:

  NightWatcher(view: self.view).watch("21:00", endTime: "08:30") // still working on
like image 880
Casper Avatar asked Aug 20 '14 19:08

Casper


4 Answers

Using functional programming concepts you can achieve this much easier.

let labels = self.view.subviews.flatMap { $0 as? UILabel }

for label in labels {
//Do something with label
}
like image 98
mKane Avatar answered Oct 06 '22 04:10

mKane


Here's a version that will return an Array of all the UILabel views in whatever view you pass in:

func getLabelsInView(view: UIView) -> [UILabel] {
    var results = [UILabel]()
    for subview in view.subviews as [UIView] {
        if let labelView = subview as? UILabel {
            results += [labelView]
        } else {
            results += getLabelsInView(view: subview)
        }
    }
    return results
}

Then you can iterate over them to do whatever you'd like:

override func viewDidLoad() {
    super.viewDidLoad()

    let labels = getLabelsInView(self.view)
    for label in labels {
        println(label.text)
    }
}
like image 30
Nate Cook Avatar answered Oct 06 '22 05:10

Nate Cook


Swift 4

Adepting mKane's answer you can use this code:

let labels = self.view.subviews.compactMap { $0 as? UILabel }

for label in labels {
   // do whatever
}
like image 37
Patrick J. Avatar answered Oct 06 '22 06:10

Patrick J.


You could set a tag to your UILabel in the Storyboard or programmatically using:

myLabel.tag = 1234 

Then, to find it use:

let myLabel = view.viewWithTag(1234)

like image 32
Marwen Doukh Avatar answered Oct 06 '22 04:10

Marwen Doukh