I am looking for a tutorial on how to create a complex view in code.
For example, a background image to the view, multiple sub views with buttons.
Is there any tutorials on how to complete this?
I am looking for a tutorial on how to create a complex view in code. For example, a background image to the view, multiple sub views with buttons. Is there any tutorials on how to complete this? |
|||||
closed as not a real question by Kurt Revis, matt, Vin, Jai, alxx Feb 4 '13 at 6:47It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.If this question can be reworded to fit the rules in the help center, please edit the question. |
|||||
|
You should read about View Controller Programming Guide in iOS and perhaps the UIView documentation. It is possible to give a UIView object several subviews by using the
method of a UIView object. |
|||
|
you can use addSubview:
this will create one view with background image and a button, if you understand the concept then you can add as many objects as you want. |
|||||||||||||
|