iOS:添加子视图后,ScrollView不会滚动

时间:2013-06-21 19:02:35

标签: ios objective-c uiscrollview

我正在从Web上加载一个图像,并将其下面的一些html加载到UIScrollView中。它位于tabbarcontroller内的navigationController内。加载子视图时,滚动视图不会滚动。我错过了什么?

这是viewDidLoad:

- (void)viewDidLoad
{
NSURL *imageURL = [NSURL URLWithString:[[self exhibit] image]];

NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage *image = [UIImage imageWithData:imageData];

if ([[UIScreen mainScreen] bounds].size.width < 600 ) {
    CGSize newSize = CGSizeMake(300.0, 140.6);
    UIGraphicsBeginImageContext(newSize);
    [image drawInRect:CGRectMake(0.0, 0.0, newSize.width, newSize.height)];
    image = UIGraphicsGetImageFromCurrentImageContext();
}

CGRect viewFrame = CGRectMake(0.0, 0.0, [[UIScreen mainScreen] bounds].size.width,
                               ([[UIScreen mainScreen] bounds].size.height - [[self navigationController] navigationBar].bounds.size.height - [[[self tabBarController] tabBar] bounds].size.height));
NSLog(@"%@",NSStringFromCGRect(viewFrame));

UIScrollView *sv = [[UIScrollView alloc] initWithFrame:viewFrame];
[sv setScrollEnabled:YES];
[self setView:sv];

CGRect frame = CGRectMake(0.0, 0.0,image.size.width,image.size.height);
UIImageView *iv = [[UIImageView alloc] initWithFrame:frame];
[iv setImage:image];
[iv setContentMode:UIViewContentModeScaleAspectFit];
[iv setTranslatesAutoresizingMaskIntoConstraints:NO];
[iv setBackgroundColor:[UIColor redColor]];
[sv addSubview:iv];
[self setImageView:iv];

NSDictionary *nameMap = @{@"imageView" : [self imageView]};

NSArray *horizontalConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-10-[imageView]-10-|"
                                                                         options:NSLayoutFormatAlignAllCenterX
                                                                         metrics:nil
                                                                           views:nameMap];
[sv addConstraints:horizontalConstraints];

NSArray *verticalConstraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[imageView]"
                                                                         options:NSLayoutFormatAlignAllTop
                                                                         metrics:nil
                                                                           views:nameMap];
[sv addConstraints:verticalConstraints];

UIWebView *wv = [[UIWebView alloc] initWithFrame:CGRectMake(0.0, 150.0, 300.0, 600.0)];
[wv loadHTMLString:[[self exhibit] text] baseURL:nil];
[sv addSubview:wv];
[self setExhibitText:wv];


}

更新

我添加了以下几行,但仍然没有变化。我根本无法滚动。

[sv setContentSize:CGSizeMake(320.0, 750.0)];
[[wv scrollView] setScrollEnabled:NO];
[[wv scrollView] setBounces:NO];
[wv setUserInteractionEnabled:NO];

3 个答案:

答案 0 :(得分:0)

您似乎没有为滚动视图设置contentSize - 如果没有内容大小,滚动视图将无法知道您希望滚动多远。默认情况下,UIScrollView的内容大小为零,因此需要进行设置。

答案 1 :(得分:0)

ScrollView需要contenSize和框架设置为非零大小。默认情况下:

scrollView.contentSize = CGRectZero;

在您的情况下,内容大小应该是与imageView和webView结合在一起的CGRect。

答案 2 :(得分:0)

您应该使用代码解决许多问题。首先,您在主线程上同步从Internet下载图像。您永远不应该在主线程上从Internet加载数据。

您遇到的另一个问题是UIWebView实际上并不打算嵌入UIScrollView中。由于UIWebView具有自己的滚动视图,因此webview将阻止对UIScrollView的所有触摸。如果Web视图包含静态内容,您可以执行webview.setUserInteractionEnabled = NO