Xcode Storyboard and xib connection

此生再无相见时 提交于 2019-12-06 11:59:26

问题


I have one story board project with many view controllers and i created one class named "connecter.h,connector.m " now can i connect this class to one .xib file ?

Please help me.


回答1:


You can create XIB when you create connector.h and connector.m by selecting it subclass of UIViewController and click on the checkbox for: "With XIB for User Interface". If you have created already .m & .h files then you can just add a new GUI file by selecting View from the window & finally setting its Controller Custom class to connector You could have StoryBoard and XIB together in the same project. See for more help.

For presenting the view Controller you could use the following code

YourViewController *viewController=[[YourViewController alloc]initWithNibName:@"ViewControllerName" bundle:nil];

[self presentViewController:viewController animated:YES completion:nil];

In case of NavigatinController

   [self.navigationController pushViewController:viewController animated:YES];



回答2:


Open the story board in your editor and click on any of the view controllers. Doing this will list all the proxy objects that you have come to be used to see when you selected any xib. Following image must help you understand better.

Now goto the Identity Inspector tab and enter you class name in the highlighted text field


回答3:


Create one Xib file set the FilesOwner class as connecter.h . The while creating the instance of connector class

[[connecter alloc] initWithNibName:@"Nib_Name" bundle:nil];



回答4:


Do this to bind your connector class with xib:[here i have bind ViewController class with xib]

And connect the view with File's owner. And your Connecter class must be of type ViewController and have the method
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}


来源:https://stackoverflow.com/questions/15567833/xcode-storyboard-and-xib-connection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!