从 xib 文件加载 ViewController

Loading ViewController from xib file(从 xib 文件加载 ViewController)
本文介绍了从 xib 文件加载 ViewController的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 MyViewController.swift 和一个 MyViewController.xib 展示 MyViewController 的布局.

I had a MyViewController.swift and a MyViewController.xib presenting the layout of MyViewController.

我尝试了不同的方法来加载这个视图控制器,包括:

I tried different methods to load this view controller including:

//1
let myVC = UINib(nibName: "MyViewController", bundle:
       nil).instantiateWithOwner(nil, options: nil)[0] as? MyViewController

//2
let myVC = NSBundle.mainBundle().loadNibNamed("MyViewController", owner: self, options: nil)[0] as? MyViewController

//3
let myVC = MyViewController(nibName: "MyViewController", bundle: nil)

第三个是唯一成功的初始化,但前两个导致错误:

The third one is the only successful initialisation, but the previous two are causing error:

由于未捕获的异常NSUnknownKeyException"而终止应用程序,

Terminating app due to uncaught exception 'NSUnknownKeyException',

原因:'[setValue:forUndefinedKey:]: this类与键 XXX 的键值编码不兼容.

reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key XXX.

这些加载方法有什么问题?

What's wrong with those loading methods?

推荐答案

Swift 3

let myViewController = MyViewController(nibName: "MyViewController", bundle: nil)
self.present(myViewController, animated: true, completion: nil)

或推入导航控制器

self.navigationController!.pushViewController(MyViewController(nibName: "MyViewController", bundle: nil), animated: true)

这篇关于从 xib 文件加载 ViewController的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)