Maison  >  Questions et réponses  >  le corps du texte

objective-c - iOS上ScrollView上的Button问题

button添加到ScrollView上,点击效果没了。
通过设置ScrollView.delaysContentTouches = NO;
点击效果回来了,但是button区域的滑动ScrollView失效。
因为button较多所以设置上面的那个不行 有没有好的解决办法。

PHP中文网PHP中文网2741 Il y a quelques jours244

répondre à tous(2)je répondrai

  • 黄舟

    黄舟2017-04-18 09:24:44

    1. Définissez une classe UIScrollView et réécrivez les méthodes suivantes

    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
        [[self nextResponder] touchesBegan:touches withEvent:event];
        [super touchesBegan:touches withEvent:event];
    }
    
    -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
        [[self nextResponder] touchesMoved:touches withEvent:event];
        [super touchesMoved:touches withEvent:event];
    }
    
    - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
        [[self nextResponder] touchesEnded:touches withEvent:event];
        [super touchesEnded:touches withEvent:event];
    }

    De cette façon, vous pouvez obtenir l'événement de clic du bouton. Plus précisément, je vais vous donner un lien et jeter un œil
    Description du lien.

    répondre
    0
  • 天蓬老师

    天蓬老师2017-04-18 09:24:44

    Pouvez-vous mettre une vue sur scrollView

    répondre
    0
  • Annulerrépondre