菜鸟教程小白 发表于 2022-12-13 01:02:45

c# - UIImageView 在触摸时更改 UIImage 然后恢复以前的 UIImage


                                            <p><p>所以,在前面的问题 <a href="https://stackoverflow.com/questions/43408862/uiimage-png-coloration" rel="noreferrer noopener nofollow">here</a> 中找到我的答案后我想要的是在这个 UIImageView 上添加 GestureRecognizer。当用户点击时,颜色会改变。当他再次点击时,默认图像会恢复。</p>

<p>有什么建议吗? </p>

<p>我正在考虑在每次点击时更新一个列表,但不确定这样做是否最好。</p>

<p>这里是 GestureRecognizer</p>

<pre><code>UITapGestureRecognizer CreateTouchGesture(UIImageView imageView)
{
    var touchGesture = new UITapGestureRecognizer((tg) =&gt;
    {
      imageView.Image = DrawSelectedBorder(imageView.Image);
    });

      return touchGesture;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>根据评论,我可以为您提供此解决方案。
您使用 UIImageView AnimationImages 属性来存储您的基本图像。
当您再次按下图像时,您将从该数组中检索它。
要知道您处于哪个状态,请使用 Ighlighted 属性。</p>

<p>像这样:</p>

<pre><code>var touchGesture = new UITapGestureRecognizer((tg) =&gt;
{
    if(!imageView.Highlighted){
      imageView.Highlighted = true;
      imageView.AnimationImages = new UIImage[]{imageView.Image};
      imageView.Image = DrawSelectedBorder(imageView.Image);
    }else{
      imageView.Highlighted = false;
      imageView.Image = imageView.AnimationImages;
      System.Diagnostics.Debug.WriteLine(imageView.AccessibilityLabel);
    }
});
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于c# - UIImageView 在触摸时更改 UIImage 然后恢复以前的 UIImage,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43411106/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43411106/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - UIImageView 在触摸时更改 UIImage 然后恢复以前的 UIImage