UIView *view =[[UIView alloc] initWithFrame:CGRect(0,0,300,70)]; //--(View created)
someViewController *someViewControllerObject = [..]; //View Controller Object created.
[view addSubview:[someViewControllerObject.view]];
I want to fit the view controller’s view in the UIView’s object. The above code doesn’t work correctly. Can you help me figure this out?
The simplest would be to just set the frame of the controller view to the bounds of the outer view;