I have a UIScrollview in a tab, i added some UIView (NIB) to the UIScrollview. Each UIView has some UISwictch, labels, buttons, etc. How can i get the the label.text inside of the view added to the UIScrollview.
I tried a lot of things but i can access to the content of the UIView added to the UIScrollview.
Check with this,
Here
scrollViewis your scroll view. It will print all label’s text.If you need to print any particular label’s text. Then add a tag to it and check the tag before printing it, like
if(myLabel.tag == 7)