I’d like to develop for iOS5 and have a storyboard…
I’ve just created UIView with UIViewController on the storyboard.
I have added a lot of other UIButtons and labels and creates outlets to VC.
I would like to use this view with it’s viewcontroller 3 times on a single parent view.
How is it possible? I dont want to copy “a lot of other UIButtons and labels” …
Maybe i should create this view out of storyboard in separate XIB? How will i use XIB in storyboard?

UPDATE:
Thanx you, Juzzz – your solution works perfect:

You have to create 2 custom viewControllers (one for each view in your story board.
example:
To connect them you can use something called: UIViewController containment
For your GraphCollectionViewController create 3 outlets for your UIViews. Then create 3 properties of GraphViewController’s (or an array, what you want) and initialize them in the view did load.
I think you get the point. For more understanding this example .