Created
February 26, 2013 04:23
-
-
Save romyilano/5035856 to your computer and use it in GitHub Desktop.
access the subviews in a UIView by iterating through its array of subVIews
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (UIView *theSubView in parentView.subViews) { | |
| // do something to the subView | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment