Questions tagged [subview]

subview is an abstract representation of a nested hierarchy of views in a MVC framework

A subview can be defined either explicitly as a separate class, or implicitly via object composition, depending on the framework.

References

1264 questions
-2
votes
1 answer

ios how can get the list of subview on view?

Any of you knows how can I can get the list of subviews on view?. there is a way to get the list into in array? NSMutableArray *subviews= .... //all my subviews
Juan
  • 627
  • 2
  • 9
  • 27
-2
votes
1 answer

change superclass' property value

I got class @interface PlayScene : UIView with some properties in it (here are some of them) @property (readwrite, assign) int Figure1; @property (readwrite, assign) int Figure2; @property (readwrite, assign) int Figure3; and I got a subView that…
Alexander
  • 233
  • 1
  • 4
  • 14
-5
votes
1 answer

Reload subview with animation

I want to reload a scroll view on click of a button.I also need to create animation similar to pushing a new view while reloading the scroll view with new values. Any ideas ? Updated : I have a main class in which i call another viewcontroller :…
swathy krishnan
  • 916
  • 9
  • 22
-5
votes
2 answers

How to pass an activity indicator between methods/

Hello I have a problem with an added subview. I have this code in method1: UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] …
1 2 3
84
85