我正在尝试将 ViewControllerClass 的视图添加到 ScrollView。
问题是只有第一页显示,其他的都是空白的。
这是我的代码
for (int i = 0; i < 8; i++) {
CGRect frame;
frame.origin.x = self.scrollView.frame.size.width * i;
frame.origin.y = 0;
frame.size = self.scrollView.frame.size;
[imageArray2 addObject:[[WeatherViewController alloc] initWithNibName:@"WeatherViewController" picname:[NSString stringWithFormat:@"s%@.png", [[xmlParser.weatherdata.timedata objectAtIndex:i] iconSymbol]] degree:@"0°" weathertimedata:[xmlParser.weatherdata.timedata objectAtIndex:i] town:[xmlParser.weatherdata town]]];
}
scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * 8, scrollView.frame.size.height);
for(WeatherViewController *iv in imageArray2)
{
[self.scrollView addSubview:iv.view];
}
有什么建议吗?