ios - 在 swift 中创建 UIImageView 的缩放

标签 ios swift uiimageview zooming uipinchgesturerecognizer

我当前正在从我的服务器加载图像。图像是否充足取决于它返回的图像数量。我已经能够成功显示这些图像,并且可以向下滚动以查看所有图像。现在我的问题是我想要一种可以单击特定图像的方法,我将能够缩放它。我在下面分享了我的代码:

//Declaration of variables
var albumID: String?
var imagePath: String?
var path: String?

var getClickImage = UIImageView()
var zoomscrollV = UIScrollView()
var imageArray = [String]()

//view did load
override func viewDidLoad() {
    super.viewDidLoad()

    setUpViewsAlbumPhotos()
    zoomscrollV.delegate = self
    if !CheckInternet.Connection(){
        showAlert(title: "No Internet", message: "Please connect your device to an internet connection")
    }else{
        fetchPhotos(albumID: albumID)
    }
}

//viewDidAppear
override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)
    zoomscrollV.isHidden = true
    zoomscrollV.frame = CGRect(x:0, y:0, width:self.view.frame.width, height:self.view.frame.height - 50)
    zoomscrollV.minimumZoomScale=1
    zoomscrollV.maximumZoomScale=10
    zoomscrollV.bounces=false

    self.view.addSubview(zoomscrollV)

    getClickImage=UIImageView()

    getClickImage.frame = CGRect(x:0, y:0, width:zoomscrollV.frame.width, height:zoomscrollV.frame.height)
    getClickImage.backgroundColor = .black
    getClickImage.contentMode = .scaleAspectFit
    zoomscrollV.addSubview(getClickImage)
}

//This code makes an async call to download images and details from the server



    let async_call = URL(string: "\(String.api_albumPhotos)\(albumID ?? "")")

        let request = NSMutableURLRequest(url: async_call!)
        request.httpMethod = "GET"
        request.addValue("application/json", forHTTPHeaderField: "Content-Type")
        request.addValue("application/json", forHTTPHeaderField: "Accept")

        let task = URLSession.shared.dataTask(with: request as URLRequest){
            data, response, error in
            if error != nil {
                print("error is:: \(error!.localizedDescription)")
                DispatchQueue.main.async {
                    self.showAlert(title: "Error", message: "Sorry try again later")
                    self.stopActivityLoader()
                }
                return
            }


            do {
                let myJSON = try JSONSerialization.jsonObject(with: data!, options: .mutableContainers) as? NSDictionary

                if let parseJSON = myJSON {

                    var responseCode: String!
                    var message: NSArray!

                    responseCode = parseJSON["responseCode"] as! String?
                    if responseCode == "200" {
                        DispatchQueue.main.async {
                            self.stopActivityLoader()
                            message = parseJSON["message"] as? NSArray
                            self.path = parseJSON["path"] as? String
                            if let message = message {
                                let totalMessage = message.count
                                let viewHeight = self.view.frame.height
                                var scrollHeight = 0
                                var contentViewTopConstraint: CGFloat = 20
//                                self.preference.set(parseJSON, forKey: UserDefaultKeys.albums.rawValue)
                                for obj in message{
                                    if let dict = obj as? NSDictionary {
                                       self.imagePath = dict.value(forKey: "path") as? String
                                        let imageID = dict.value(forKey: "id") as? String


                                        let albumThumbnail = photos()
                                        self.scrollView.addSubview(albumThumbnail)
                                        albumThumbnail.translatesAutoresizingMaskIntoConstraints = false
                                        albumThumbnail.leadingAnchor.constraint(equalTo: self.contentView.leadingAnchor).isActive = true
                                        albumThumbnail.topAnchor.constraint(equalTo: self.scrollView.topAnchor, constant: contentViewTopConstraint).isActive = true
                                        albumThumbnail.trailingAnchor.constraint(equalTo: self.contentView.trailingAnchor).isActive = true
                                        albumThumbnail.heightAnchor.constraint(equalToConstant: 150).isActive = true
                                        albumThumbnail.isUserInteractionEnabled = true
                                        albumThumbnail.contentMode = .scaleAspectFit
                                        let touchRec = UITapGestureRecognizer(target: self, action: #selector(self.myImageTapped(_:)))
                                        albumThumbnail.addGestureRecognizer(touchRec)


                                        if let path = self.path{
                                            if let imagePath = self.imagePath{
                                                let strippedPath = path.replacingOccurrences(of: "\\", with: "")
                                                let strippedImagePath = imagePath.replacingOccurrences(of: "\\", with: "")
                                                print("\(strippedPath)\(strippedImagePath)")
                                                albumThumbnail.sd_setImage(with: URL(string: "\(strippedPath)\(strippedImagePath)"), placeholderImage: UIImage(named: "default_profile"), options: [.continueInBackground, .progressiveDownload])
                                                if let wrapped = self.path {
                                                    self.imageArray.append("\(strippedPath)\(strippedImagePath)")
//                                                    print(self.imageArray.append(wrapped))
                                                }

                                            }
                                        }

                                        contentViewTopConstraint = contentViewTopConstraint + 170
                                    }
                                }
                                scrollHeight = totalMessage * 170
                                if totalMessage <= 1 {
                                    self.scrollView.contentSize.height = viewHeight + 20
                                }else{
                                    self.scrollView.contentSize.height = CGFloat(scrollHeight)
                                }

                            }
                        }
                    }else{
                        //Show alert
                        DispatchQueue.main.async {
                            self.showAlert(title: "Error", message: "Sorry could not update album. Try again")
                            self.stopActivityLoader()
                        }
                    }
                }
            }catch{
                print("you:: \(error.localizedDescription)")
                //Show alert
                DispatchQueue.main.async {
                    self.showAlert(title: "Error", message: "Sorry could not update album. Try again")
                    self.stopActivityLoader()
                }
            }
        }
        task.resume()
    }

    @objc func myImageTapped(_ sender: UITapGestureRecognizer) {

        zoomscrollV.isHidden = false
        let myImage = imageArray[(sender.view?.tag)!]
        print("myImage \(myImage)")
        // RESPECTIVE IMAGE
        getClickImage.image = UIImage(named: myImage)

        let closeButton: UIButton = UIButton(type: .custom)
        closeButton.frame = CGRect(x:40.0, y:self.view.frame.height - 50, width:self.view.frame.width - 80, height:50.0)
        closeButton.addTarget(self, action: #selector(self.closeZoom), for: .touchUpInside)
        closeButton.setTitle("CLOSE ZOOM", for: .normal)
        closeButton.setTitleColor(UIColor.white, for: .normal)

        // CLOSE BUTTON
        self.view.addSubview(closeButton)

    }``

    @objc func closeZoom(sender: AnyObject) {
        zoomscrollV.isHidden = true
        zoomscrollV.setZoomScale(1.0, animated: false)
        sender.removeFromSuperview()
    }

    //SCROLLVIEW DELEGATE
    func viewForZooming(in scrollView: UIScrollView) -> UIView? {

        return getClickImage

    }

最佳答案

============================ 1 月 24 日编辑 =============== =============

将网址转换为图像

@objc func myImageTapped(_ sender: UITapGestureRecognizer) {

    zoomscrollV.isHidden = false
    let myImageURL = imageArray[(sender.view?.tag)!]

    if let url = URL( string: myImageURL)
    {
         DispatchQueue.global().async {
         if let data = try? Data( contentsOf:url){

             DispatchQueue.main.async {

                let myImage = UIImage( data:data)

                print("myImage \(myImage)")
                // RESPECTIVE IMAGE
                getClickImage.image = UIImage(named: myImage)

                let closeButton: UIButton = UIButton(type: .custom)
                closeButton.frame = CGRect(x:40.0, y:self.view.frame.height - 50, width:self.view.frame.width - 80, height:50.0)
                closeButton.addTarget(self, action: #selector(self.closeZoom), for: .touchUpInside)
                closeButton.setTitle("CLOSE ZOOM", for: .normal)
                closeButton.setTitleColor(UIColor.white, for: .normal)

                // CLOSE BUTTON
                self.view.addSubview(closeButton)


             }
         }
     }
 }

================================================== ===============

在单击图像时,您创建了 ScrollView 并将相应的图像添加为 subview ,然后缩放就可以了。

var getClickImage = UIImageView()
var zoomscrollV = UIScrollView()

override func viewDidLoad() {
        super.viewDidLoad()
zoomscrollV.delegate = self
}

override func viewDidAppear(_ animated: Bool) {
        zoomscrollV.isHidden = true
        zoomscrollV.frame = CGRect(x:0, y:0, width:self.view.frame.width, height:self.view.frame.height - 50)
        zoomscrollV.minimumZoomScale=1
        zoomscrollV.maximumZoomScale=10
        zoomscrollV.bounces=false

        self.view.addSubview(zoomscrollV)

        getClickImage=UIImageView()

        getClickImage.frame = CGRect(x:0, y:0, width:zoomscrollV.frame.width, height:zoomscrollV.frame.height)
        getClickImage.backgroundColor = .black
        getClickImage.contentMode = .scaleAspectFit
        zoomscrollV.addSubview(getClickImage)
}


// ON CLICKING IMAGE ACTION
@objc func myImageTapped(_ sender: UITapGestureRecognizer) {

    zoomscrollV.isHidden = false

    // RESPECTIVE IMAGE
    getClickImage.image = BG_CARD_IMGS[(sender.view?.tag)!] 

    let closeButton: UIButton = UIButton(type: .custom)
    closeButton.frame = CGRect(x:40.0, y:self.view.frame.height - 50, width:self.view.frame.width - 80, height:50.0)
    closeButton.addTarget(self, action: #selector(self.closeZoom), for: .touchUpInside)
    closeButton.setTitle("CLOSE ZOOM", for: .normal)
    closeButton.setTitleColor(UIColor.red, for: .normal)

    // CLOSE BUTTON 
    self.view.addSubview(closeButton)

}

@objc func closeZoom(sender: AnyObject) {
    zoomscrollV.isHidden = true
    zoomscrollV.setZoomScale(1.0, animated: false)
    sender.removeFromSuperview()
}

//SCROLLVIEW DELEGATE
func viewForZooming(in scrollView: UIScrollView) -> UIView? {

    return getClickImage

}

输出

enter image description here

关于ios - 在 swift 中创建 UIImageView 的缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53688709/

相关文章:

ios - UIDatePicker 在模拟器和 iPhone 之间输出不同格式的日期字符串

ios - 如何在加载应用程序和完全加载网页 View 页面之前直接添加启动画面图像?

ios - 在 TableView Controller iOS swift 中搜索特定记录

Swift 闭包 : Must Capture Lists Be Exhaustive?

swift - 我如何进入 firebase 并获取我的图片 url,然后将其解码为 UIImage,然后将图片显示为谷歌地图中的标记图标?

iphone - 在 JSON 中发布用户名和密码

iphone - NSCalendarUnit – 修改 unitFlags

swift - 在包含 UIImageView 的 UICollectionView 单元格中的 UIImage 之间切换

ios - 触摸 UITextField 时设置 UIPickerView 的默认值

ios - 图像未根据方向变化调整大小