这是交易:对于新闻应用,我在Scroll视图中加载一个视图,在每个部分上进行水平分页,没有问题,PageControl演示帮了很多,但现在我需要加载一个View以编程方式在另一个Scroll View内部,所以我可以显示每个部分的内容,交易是我需要在NIB文件上定制设计的视图,所以每个部分看起来不同,所以我想使用plist加载每个自定义视图通用滚动视图。
这是我到目前为止所得到的:
- (void)loadScrollViewWithPage:(int)page{
if (page < 0)
return;
if (page >= kNumberOfPages)
return;
// replace the placeholder if necessary
Seccion *controller = [viewControllers objectAtIndex:page];
if ((NSNull *)controller == [NSNull null])
{
controller = [[Seccion alloc] initWithPageNumber:page];
[viewControllers replaceObjectAtIndex:page withObject:controller];
[controller release];
}
// add the controller's view to the scroll view
if (controller.view.superview == nil)
{
NSDictionary *numberItem = [self.contentList objectAtIndex:page];
//UIImage *image1 = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image1.jpg" ofType:nil]];
controller.sectionTitle.text = [numberItem valueForKey:Nombre];
controller.sectionView.text = [numberItem objectForKey:Vista];
controller.sectionId.text = [numberItem valueForKey:Id];
//Here is supposed to have the code to load the view inside the scroll view I tried using: [controller.sectionScrollView addSubview:controller.sectionView.text];
CGRect frame = scrollView.frame;
frame.origin.x = frame.size.width * page;
frame.origin.y = 0;
controller.view.frame = frame;
[scrollView addSubview:controller.view];
}
}
提前多多感谢
答案 0 :(得分:0)
如果您的所有观看次数都有自己的笔尖,则可能会有效:
UIView *view = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil] objectAtIndex:0];
因此您可以将每个笔尖的名称保存在plist中。