UIPageViewController in XIB Error - ios

I have a subclassed view controller and in Interface Builder I want a subview of the VC's view to be a UIPageViewController's view. I set the UIPageViewController's datasource to File's Owner and the view property to the subview of my VC. Can this functionality be achieved? or I can't use the UIPageVC in that way? Most of the examples are for storyboards and not the old VC pushed by NavigationController way. I get this exception '[UIView invalidatePageViewController]'.

I had the same thing happen to me when I had a UIViewController as my root view - and my UIViewController had an attribute defined as:
#property (strong, nonatomic) IBOutlet UIPageViewController *pageViewController;
My IBoutlet was also connected to a UIPageViewController in my xib.
The solution: Remove the IBoutlet and disconnect the UIPageViewController from my xib
#property (strong, nonatomic) UIPageViewController *pageViewController;
Maybe the crash is related to 'there should only be one view controller per view'
Also, in the 'viewdidload' if you do
_pageViewController.view = _apageView;
where _apageView is in your UIViewController as:
#property (strong, nonatomic) IBOutlet UIView *apageView;
This will also cause the same crash to happen - therefore you would need to do:
[_apageView addSubview:_pageController.view];
Then the crash shouldn't happen.

Related

how can I prevent custom navigation bar stretch?

In my app I make a viewcontroller that contain imageview and custom navigation bar and connect navigationbaritem and navigationbar outlets to code .
I define UINavigationBar and UINavigationItem as outlet.
#property (weak, nonatomic) IBOutlet UIImageView *imageView;
#property (weak, nonatomic) IBOutlet UINavigationBar *navigationBar;
#property (weak, nonatomic) IBOutlet UINavigationItem *barItem1;
#property (weak, nonatomic) IBOutlet UILabel *label;
#end
When image don't load every thing okay but when I fetch image and load view height of navigation bar changed. How can I prevent to stretch navigation bar?
i use xcode 7.3 and ios 9.X.
i define
image description :
enter image description here
You can prevent your bar from stretching by hardcoding the height value of your bar element in the storyboard.
To do this you need to set the height constraint of your element.

How to change container in another VC ? iOS

In ViewController i have two property of containers:
#property (weak, nonatomic) IBOutlet UIView *firstContainerView;
#property (weak, nonatomic) IBOutlet UIView *secondContainerView;
And i can do everything with them:
self.firstContainerView.alpha = 0;
self.secondContainerView.alpha = 1;
But how i can appear firstContainerView from SecondVC method (click button) ?
First of all you must have a pointer to access the target view controller so you see two vc not have a connection so you should create a global pointer for another vc to access. You can create a singleton to hold these vc or just use a delegate or block.
Why don't use a delegate to inform ViewController that button is clicked and ViewController will take care of appearing/disappearing the containers views.

Create Container view for Two UIViewController on iPad

i have two UIViewController class with xib from interface builder, and i want create another UIViewController with xib that contains this two view, it's possible and how i can achieve this feature?
You can't add View controller A and B's views to view controller C in an XIB because there is a fair amount of housekeeping code you need to do to set up the parent/child view controller relationship.
However, if you were to use storyboards, and you are running in iOS 6 or later, this would be trivial. There is a new "container" view in iOS 6. You just add a container view to your scene, and then control-drag from the container view onto another view controller's scene, and IB sets up an embed segue that does all the housekeeping for you. In my view this feature alone is enough to justify moving to storyboards.
You add two UIView in your third UIViewController xib and you link these UIView with IBOulet.
#property (nonatomic, weak) IBOutlet UIView *firstView;
#property (nonatomic, weak) IBOutlet UIView *secondView;
After that you add your UIViewController in theses subviews in the viewDidLoad for example :
- (void)viewDidLoad
{
[super viewDidLoad];
MyFirstViewController *myFirstViewController = [[MyFirstViewController alloc] initWitNibName:#"MyFirstViewController"];
MySecondViewController *mySecondViewController = [[MySecondViewController alloc] initWitNibName:#"MySecondViewController"];
[self.firstView addSubview:myFirstViewController.view];
[self.secondView addSubview:mySecondViewController.view];
}
Improve it with #property of First and Second ViewController and Lazy loading.

How to create generic view with viewcontroller for iOS5?

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:
#interface GraphCollectionViewController : UIViewController
#interface GraphViewController : UIViewController
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.
#property (strong, nonatomic) IBOutlet UIView *topView;
#property (strong, nonatomic) IBOutlet UIView *middleView;
#property (strong, nonatomic) IBOutlet UIView *bottomView;
#property (strong, nonatomic) GraphViewController *topGraphViewController;
#property (strong, nonatomic) GraphViewController *middleGraphViewController;
#property (strong, nonatomic) GraphViewController *bottomGraphViewController;
...
//top graph
self.topGraphViewController = [storyboard instantiateViewControllerWithIdentifier:#"GraphViewController"]; //init with view from storyboard
self.topGraphViewController.view.frame = self.topView.bounds; //set frame the same
[self.view addSubview:self.topGraphViewController.view];
[self addChildViewController:self.topGraphViewController];
[self.topGraphViewController didMoveToParentViewController:self];
//middle graph
self.middleGraphViewController = [storyboard instantiateViewControllerWithIdentifier:#"GraphViewController"]; //init with view from storyboard
self.middleGraphViewController.view.frame = self.middleView.bounds; //set frame the same
[self.view addSubview:self.middleGraphViewController.view];
[self addChildViewController:self.middleGraphViewController];
[self.middleGraphViewController didMoveToParentViewController:self];
//bottom graph
self.bottomGraphViewController = [storyboard instantiateViewControllerWithIdentifier:#"GraphViewController"]; //init with view from storyboard
self.bottomGraphViewController.view.frame = self.bottomView.bounds; //set frame the same
[self.view addSubview:self.bottomGraphViewController.view];
[self addChildViewController:self.bottomGraphViewController];
[self.bottomGraphViewController didMoveToParentViewController:self];
I think you get the point. For more understanding this example .
You can create a new view class (with it's own .h, .m files) and base this on the ViewController you created yourself.
So as for code:
#interface ViewController : UIViewController
Let's say the above is your original ViewController that you want to use in other places.
This has buttons, labels, etc. in it.
When you create a new view class base it on your own instead of UIViewController class like this:
#interface MyNewController : ViewController
Now that MyNewController is based on ViewController you created earlier, it should have it's buttons, labels, etc. you created as well.
Edit: You might also have to change your view's base class in the storyboard.
Click on the view you want to change, look at the right hand side attributes window, under Custom Class choose your own controller, in this case ViewController.

IBOutlets not showing up in storyboard for iPad Xcode 4

I'm creating some outlets for my UI scroll views.
These outlets show up just fine in the iPhone Interface Builder but in the iPad interface builder they are nowhere to be seen.
Any idea why?
#interface ViewController : UIViewController {
IBOutlet UIScrollView *scroller;
IBOutlet UIScrollView *scrollerLong;
IBOutlet UIScrollView *scrollerHuge;
IBOutlet UIScrollView *scrollerMassive;
IBOutlet UIScrollView *mediumScroll;
IBOutlet UIScrollView *scrollerHome;
}
You can set a property in the header file:
#property(retain, nonatomic) IBOutlet UIScrollView *scroller;

Resources