Skip to content

Instantly share code, notes, and snippets.

@romyilano
Created February 26, 2013 04:23
Show Gist options
  • Select an option

  • Save romyilano/5035856 to your computer and use it in GitHub Desktop.

Select an option

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