IOS:将'调光器'视图的alpha设置为大于0.0会禁用触摸事件(?)

时间:2010-12-06 21:18:11

标签: iphone uiview alpha touch-event

我有一个应用程序,我试图允许用户通过手势调暗显示。我有一个UIView,其中包含许多其他视图和按钮,然后我放置一个UIView,其背景颜色设置为黑色。为了没有调光,我将该调光器视图的alpha设置为零(透明)。为了实现调光,我以小步长增加alpha值。这似乎很有效,除了......(你知道即将到来)每当alpha值大于零时,触摸事件就会被阻止 - 不能正常接收。

创建调光器视图:

UIPanGestureRecognizer * panner = nil;
panner = [[UIPanGestureRecognizer alloc] initWithTarget: self action:@selector(handlePanGesture:)];
[self.view addGestureRecognizer:panner ];
[panner setDelegate:self];
[panner release];


CGRect frame = CGRectMake(0, 0, 320, 460);
self.dimmer = [[UIView alloc] initWithFrame:frame];
[self.dimmer setBackgroundColor:[UIColor blackColor]];
[self.view addSubview:dimmer];

处理平移手势:

-(IBAction) handlePanGesture:(UIPanGestureRecognizer *) sender
{
    static CGPoint lastPosition = {0};
    CGPoint nowPosition;
    float alpha = 0.0;
    float new_alpha = 0.0;
    nowPosition = [sender translationInView: [self view]];
    alpha = [dimmer alpha];

    if (nowPosition.y > lastPosition.y)
    {   NSLog(@"Down");
        new_alpha = min(alpha + 0.02,1.0);
        [dimmer setAlpha:(new_alpha)];
    }
    else if (nowPosition.y < lastPosition.y)
    { 
        NSLog(@"Up"); 
        new_alpha = max(alpha - 0.02,0);
        [dimmer setAlpha:(new_alpha)];
    }
    else
    {   NSLog(@" neither "); }
    NSLog(@"alpha = %f new_alpha = %f", alpha, new_alpha);
    lastPosition = nowPosition;
}

为什么事件被阻止的任何想法?有更好的方法吗?
我已经阅读了几篇帖子并搜索了相当多的帖子,但没有看到任何相关的内容。

任何和所有帮助表示赞赏。

:沸点:

1 个答案:

答案 0 :(得分:4)

尝试在调光器视图上将userInteractionEnabled设置为NO。这应该告诉视图不要与触摸事件交互,这应该允许它们继续向下到调光器下面的视图。