带有多个子视图的UIScrollView

时间:2013-03-23 15:38:32

标签: ios uiscrollview

我有一个UIScrollView,里面有许多其他子视图。大多数子视图都是UITextView,当它们都被加载时,滚动和一切都很好。但是对于其中一个观点,我正在加载一个UIView,其中包含MKMapViewUITextView。当用户想要滚动UIScrollView时,他们无法触及UIView或其内容。我无法将setUserInteractionEnabled设置为NO,因为我需要用户点击MKMapView,然后转到另一个UIViewController获取地图。对此有什么建议吗?我有以下代码:

    CGRect dealDescRect = CGRectMake(10, 10, delegate.scrollView.frame.size.width - 22 - 20, 120);
    mapView = [[MKMapView alloc] initWithFrame:dealDescRect];
    mapView.layer.cornerRadius = cornerRadius;
    mapView.scrollEnabled = NO;
    mapView.zoomEnabled = NO;

    BOOL result = [self loadAddressIntoMap];
    if (result == TRUE) {
        UITapGestureRecognizer* recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
        [mapView addGestureRecognizer:recognizer];
    }

    UITextView *addressTextView = [self generateTextView:addressText :5];
    addressTextView.editable = NO;
    [addressTextView setFont:[UIFont systemFontOfSize:fontSize]];
    [addressTextView setUserInteractionEnabled:NO];
    CGRect addressTextViewFrame = addressTextView.frame;
    addressTextViewFrame.origin.x = 0;
    addressTextViewFrame.origin.y = 130;
    addressTextViewFrame.size.height = addressTextView.contentSize.height + 15;
    addressTextView.frame = addressTextViewFrame;

    CGRect viewRect = CGRectMake(10, 145, delegate.scrollView.frame.size.width - 22, addressTextView.contentSize.height + 135);
    viewRect.origin.x = 11;
    viewRect.origin.y = startTop;
    UIView *view = [[UIView alloc] initWithFrame:viewRect];
    view.layer.cornerRadius = cornerRadius;

    [view setBackgroundColor:[UIColor whiteColor]];
    [view addSubview:mapView];
    [view addSubview:addressTextView];

修改

出于某种奇怪的原因,如果我将UIView更改为UITextView,它就可以了!不知道这里真正的解决方案是什么。我只是禁用编辑。

1 个答案:

答案 0 :(得分:1)

如果是我,而不是使用手势识别器来监视地图上的点按,我创建了一个自定义类型的UIButton(UIButtonTypeCustom)并且没有背景而没有文本,并将其置于顶部与地图具有相同框架的地图。

这样做的好处是可以防止用户与地图交互,根据需要移动到下一页,如果用户开始滚动,即使他们能够在地图上滚动,也可以。