是否可以创建一个包含自定义静态单元格的表格 View 的 nib 文件?我想创建一个包含所有静态内容的类似表单的表格 View ,但我目前没有使用 Storyboard 。我能够在我的应用程序的默认 Storyboard 中找到内容类型菜单,但我使用的是 Nibs,当我创建 UIViewController nib 或 UITableViewController nib 时,在这两种情况下,属性检查器中都没有内容类型菜单标签。
有什么想法吗?
Best Answer-推荐答案 strong>
目前看来,我正在尝试做的事情不受支持。我在 Apple 上提交了 Radar 错误,但这是对我有用的解决方法。
只需使用 Storyboard ,并像 Nib 一样使用:
UIStoryboard *sb = [UIStoryboard storyboardWithName"EditProfile" bundle:nil];
EditProfileTVC *vc = [sb instantiateViewControllerWithIdentifier"EditProfile"];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self.navigationController pushViewController:vc animated:YES];
在您的 Storyboard中,您将要启动的 View Controller 命名为 EditProfile,在这种情况下。希望这可以帮助某人。
关于ios - NIB 文件中的静态表格单元格,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24729141/
|