Swift how to get UIAlertController title height

核能气质少年 提交于 2019-12-11 16:47:54

问题


Currently I'm working on UIAlertController in swift. I'm trying to add an activity indicator to my alert controller. I have found following solution, but when the title is bigger than one line, then spinner and title overlapped. For this I guess, I need to know the height of title label.

let spinner = UIActivityIndicatorView(activityIndicatorStyle: .gray)
spinner.center = CGPoint(x: 130.5, y: 65.5)
spinner.startAnimating()
alert.view.addSubview(spinner)

Someone please help me with a proper solution.


回答1:


As I know, it is not possible to access title height. It is easy to add a custom UIView on alert view, then add title label, spinner, message label on the custom view.

           let alert = UIAlertController(title: " ", message: " ", preferredStyle: UIAlertControllerStyle.alert)
           let customViewWidth: CGFloat = 270
            let viewRect = CGRect(x: 0, y: 0, width: customViewWidth, height: 150)
            let customView = UIView(frame: viewRect)
            customView.backgroundColor = UIColor.white
            customView.layer.cornerRadius = 20.0
            customView.clipsToBounds = true

            var spinnerTopPadding: CGFloat = 17.0
            if(!title.isEmpty) {

                let titleRect = CGRect(x: 13.0, y: 17.0, width: customViewWidth - 26, height: 100)
                let titleLabel = UILabel(frame: titleRect)
                titleLabel.textAlignment = .center
                titleLabel.numberOfLines = 0
                titleLabel.font = titleLabel.font(withSize: 17.0)
                titleLabel.lineBreakMode = .byWordWrapping
                titleLabel.text = title
                titleLabel.sizeToFit()
                titleLabel.center = CGPoint(x: customViewWidth / 2, y: titleLabel.frame.size.height / 2 + 17.0)
                customView.addSubview(titleLabel)
                spinnerTopPadding = titleLabel.frame.size.height + 27
            }

            let spinner = UIActivityIndicatorView(activityIndicatorStyle: .gray)
            spinner.center = CGPoint(x: customViewWidth / 2, y: spinnerTopPadding + spinner.frame.size.height / 2)
            spinner.startAnimating()
            customView.addSubview(spinner)

            var messageText = message.replacingOccurrences(of: "\n\n", with: "")
            messageText = message.replacingOccurrences(of: "\n", with: "")
            var spinnerBottomPadding: CGFloat = 17.0
            if (!message.isEmpty) {

                let messageRect = CGRect(x: 13.0, y: spinnerTopPadding + spinner.frame.size.height + 10.0, width: customViewWidth - 26, height: 100)
                let messageLabel = UILabel(frame: messageRect)
                messageLabel.textAlignment = .center
                messageLabel.numberOfLines = 0
                messageLabel.font = messageLabel.font(withSize: 14.0)
                messageLabel.lineBreakMode = .byWordWrapping
                messageLabel.text = messageText
                messageLabel.sizeToFit()
                messageLabel.center = CGPoint(x: customViewWidth / 2, y: spinnerTopPadding + spinner.frame.size.height + messageLabel.frame.size.height / 2 + 10)
                customView.addSubview(messageLabel)
                spinnerBottomPadding = messageLabel.frame.size.height + 27
            }

            customView.frame.size.height = spinnerTopPadding + spinner.frame.size.height + spinnerBottomPadding
            alert.view.addSubview(customView)
            let alertControllerHeight = NSLayoutConstraint(item: alert.view, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1, constant: customView.frame.size.height)
            let alertControllerWidth = NSLayoutConstraint(item: alert.view, attribute: .width, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1, constant: customViewWidth)
            alert.view.addConstraint(alertControllerHeight)
            alert.view.addConstraint(alertControllerWidth)
            let alertContainer = alert.view.subviews.first!.subviews.first!
            for container in alertContainer.subviews {
                container.backgroundColor = UIColor.white
                container.layer.cornerRadius = 20.0
            }
           self.present(alert, animated: true, completion: nil)


来源:https://stackoverflow.com/questions/45180904/swift-how-to-get-uialertcontroller-title-height

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!