我想设计一个 UIView,它比 Storyboard (iOS 5) 中的 ViewController 大.
I would like to design a UIView, which is larger than a ViewController in Storyboard (iOS 5).
UIView 应该用作 UIScrollView 的子视图,因此比我现有的任何 ViewController 都大.如何在 Storyboard 中创建这样的 UIView 并将其与我的 UIScrollView 关联?
The UIView should be used as the subview of a UIScrollView and hence be larger than any of my existing ViewControllers. How can I create such a UIView in Storyboard and associate it with my UIScrollView?
如果可能,我希望不使用 xib 文件.
I would like to do this without xib files if possible.
谢谢!
除了使用 xibs,我没有其他选择,但它并不那么烦人:
I see no other option than using xibs, but it's not that annoying:
//We have file called "View.xib" in our project. It contains one SINGLE view
NSArray *xibContents = [[NSBundle mainBundle] loadNibNamed:@"View" owner:self options:nil];
UIView *view = [xibContents lastObject]; //safer than objectAtIndex:0
[self.scrollview addSubview:view];
self.scrollview.contentSize = view.frame.size;
为了建立 IB 连接,您可以将 xib 中的 filesOwner 类设置为您的 viewController,然后像往常一样连接.
In order to make IB connections you can set the filesOwner class in the xib to be your viewController, and connect like usual.
这篇关于如何在 Storyboard 中的任何 ViewController 之外设计单独的 UIView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
阻止 UITableView 自动滚动Stop a UITableView from automatically scrolling(阻止 UITableView 自动滚动)
iOS UIScrollView 延迟加载iOS UIScrollView Lazy Loading(iOS UIScrollView 延迟加载)
在 iOS 5 模拟器上运行时,使用 iOS 6.0 SDK 并为 iusing iOS 6.0 SDK and building for iOS 5 Target causes UIScrollView setMinimumZoomScale to fail when running on iOS 5 simulator(在 iOS 5 模拟器上运
以编程方式创建部分屏幕 UIPageViewControllerCreate partial-screen UIPageViewController programmatically(以编程方式创建部分屏幕 UIPageViewController)
如何使用或不使用 ScrollView 使 ImageView 可缩放?how to make an ImageView zoomable with or without ScrollView.?(如何使用或不使用 ScrollView 使 ImageView 可缩放?)
UIImageView 在 UIScrollView 中缩放和捏合UIImageView zoom and pinch in UIScrollView(UIImageView 在 UIScrollView 中缩放和捏合)