Xamarin.iOS
UIImageView увеличить в сочетании с UIScrollView
Поиск…
замечания
UIImageView должен быть в scrollview, чтобы это работало.
Метод DoubleTap будет переключаться между minScale и doubleTapScale.
Двойное нажатие
private float minScale = 1f;
private float doubleTapScale = 2f;
private float maxScale = 4f;
private void SetUpDoubleTapZoom()
{
imageViewToZoom.ContentMode = UIViewContentMode.ScaleAspectFit;
scrollView.MaximumZoomScale = maxScale;
scrollView.MinimumZoomScale = minScale;
var doubleTap = new UITapGestureRecognizer(OnDoubleTap)
{
NumberOfTapsRequired = 2
};
scrollView.AddGestureRecognizer(doubleTap);
}
private void OnDoubleTap(UIGestureRecognizer gesture)
{
scrollView.ZoomScale = (scrollView.ZoomScale.Equals(minScale)) ? doubleTapScale : minScale;
}
Усиление зума
private float minScale = 1f;
private float maxScale = 4f;
private void SetUpPinchGestureZoom()
{
imageViewToZoom.ContentMode = UIViewContentMode.ScaleAspectFit;
scrollView.MaximumZoomScale = maxScale;
scrollView.MinimumZoomScale = minScale;
scrollView.ViewForZoomingInScrollView += (UIScrollView sv) => { return imageViewToZoom; };
}
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow