UITextView link跳轉(zhuǎn)

廢話不多說(shuō)姆打,直接上代碼状原,通過(guò)一個(gè)彈窗來(lái)展示效果

import UIKit
import FZBaseKit
import SnapKit
import RxSwift
@objcMembers
/// 新的彈窗alert珍语,支持富文本點(diǎn)擊跳轉(zhuǎn)峻贮,支持左側(cè)取消按鈕,右側(cè)確定按鈕腌紧;支持中間一個(gè)確定按鈕
open class FZAlertView: UIView {
    //按鈕點(diǎn)擊回調(diào),取消按鈕false 確認(rèn)按鈕 true
    typealias hander = (_ result: Bool)->()
    typealias strHander = (_ index: Int, _ linkStr: String)->()
    //按鈕點(diǎn)擊回調(diào)屬性
    private var callBlock:hander?
    //富文本點(diǎn)擊回調(diào)屬性
    private var strCallBlock:strHander?
    private var attributedArr: Array<FZAlertViewModel>?
    private let bag = DisposeBag.init()
    //白色承載體
    lazy var bgView: UIView = {
        let view = UIView.init()
        view.backgroundColor = .white
        view.layer.cornerRadius = CGFloat(KRatio(15))
        view.clipsToBounds = true
        return view
    }()
    
    lazy var contentTextView: UITextView = {
        let textView = UITextView.init()
        textView.textAlignment = .center
        textView.font = KFont(CGFloat(KRatio(15)))
        textView.textColor = UIColor.hex("#3D3838")
        textView.backgroundColor = .white
        textView.delegate = self
        textView.isEditable = false //禁止編輯
        textView.isScrollEnabled = false //禁止?jié)L動(dòng)
        return textView
    }()
    
    lazy var cancelBtn: UIButton = {
        let btn = UIButton.initButton(title: "", titleColor: UIColor.hex("#3D3838"), fontSize: 18, bgColor: UIColor.clear, imageName: "")
        btn.layer.masksToBounds = true
        btn.layer.cornerRadius = CGFloat(KRatio(22))
        btn.layer.borderWidth = 0.5
        btn.layer.borderColor = UIColor.hex("#918B8B").cgColor
        return btn
    }()
    
    lazy var confirmBtn: UIButton = {
        let btn = UIButton.initButton(title: "", titleColor: UIColor.white, fontSize: 18, bgColor: UIColor.hex("#6249EE"), imageName: "")
        btn.layer.masksToBounds = true
        btn.layer.cornerRadius = CGFloat(KRatio(22))
        return btn
    }()
    
    /// 創(chuàng)建alertView
    /// - Parameters:
    ///   - message: 文本信息
    ///   - sureBtnTitle: 確認(rèn)按鈕標(biāo)題
    ///   - cancelBtnTitle: 取消按鈕標(biāo)題夜涕,如果無(wú)取消按鈕該值不傳
    ///   - supperVC: 推出alertview的VC犯犁,如果為空,就通過(guò)KAppwindow彈出
    ///   - btnActionCallBack: 取消女器、確認(rèn)按鈕點(diǎn)擊回調(diào)
    ///   - attributedArr: 富文本點(diǎn)擊數(shù)組,數(shù)組內(nèi)部字典組成為酸役,無(wú)富文本點(diǎn)擊可不傳
    ///   - attributedClickActionCallBack: 富文本點(diǎn)擊回調(diào)
    /// - Returns: 返回alertView
   public static func showAlertView(message: String, supperVC: UIViewController?, sureBtnTitle: String, cancelBtnTitle: String = "", attributedArr: Array<FZAlertViewModel> = [], btnActionCallBack: @escaping (_ result: Bool)->(), attributedClickActionCallBack: @escaping (_ index: Int, _ linkStr: String)->()) {
        let frame = supperVC == nil ? CGRect.init(x: 0, y: 0, width: KWIDTH_SCREEN, height: KHEIGHT_SCREEN) : supperVC!.view.bounds
        let alertView = FZAlertView.init(frame: frame)
        alertView.callBlock = btnActionCallBack
        alertView.strCallBlock = attributedClickActionCallBack
        alertView.attributedArr = attributedArr
        alertView.initUI(supperVC: supperVC)
        alertView.setData(message: message, sureBtnTitle: sureBtnTitle, cancelTitle: cancelBtnTitle)
        alertView.layoutUI(message: message, cancelTitle: cancelBtnTitle)
    }
    
    //UI構(gòu)建
    private func initUI(supperVC: UIViewController?) {
        self.backgroundColor = UIColor.RGBA(0, 0, 0, 0.6)
        self.addSubview(bgView)
        bgView.addSubview(contentTextView)
        bgView.addSubview(confirmBtn)
        bgView.addSubview(cancelBtn)
        if supperVC == nil {
            KAppWindow?.addSubview(self)
        } else {
            supperVC?.view.addSubview(self)
            supperVC?.view.bringSubviewToFront(self)
        }
    }
    
    //數(shù)據(jù)處理
    private func setData(message: String, sureBtnTitle: String, cancelTitle: String) {
        self.confirmBtn.setTitle(sureBtnTitle, for: .normal)
        self.cancelBtn.setTitle(cancelTitle, for: .normal)
        //textView富文本
        contentTextView.attributedText = self.getContentTextViewAttributedText(message: message)
        //按鈕點(diǎn)擊
        cancelBtn.rx.tap.asObservable()
            .subscribe {[weak self] _ in
                guard let self = self else {return}
                if self.callBlock != nil {
                    self.callBlock!(false)
                    self.removeFromSuperview()
                }
            }
            .disposed(by: bag)
        
        confirmBtn.rx.tap.asObservable()
            .subscribe{[weak self] _ in
                guard let self = self else {return}
                if self.callBlock != nil {
                    self.callBlock!(true)
                    self.removeFromSuperview()
                }
            }
            .disposed(by: bag)
    }
    
    //布局構(gòu)建
    private func layoutUI(message: String, cancelTitle: String) {
        let btnWidth = KRatio(105)
        let btnHeight = KRatio(44)
        var contentWidth = KRatio(275)//默認(rèn)高度
        let textViewHeight = message.getStringHeight(CGFloat(KRatio(230)), KFont(CGFloat(KRatio(15)))) + CGFloat(KRatio(20))
        
        var contentHeight = Int(textViewHeight) + KRatio(20) + btnHeight + KRatio(40)
        if contentHeight < KRatio(175) {
            contentHeight = KRatio(175)
        }
        if contentHeight > KRatio(550) {
            //如果高度過(guò)高,那么設(shè)置最大高度晓避,并且設(shè)置textView可滾動(dòng)
            contentHeight = KRatio(550)
            contentTextView.isScrollEnabled = true
        }
        
        bgView.snp.makeConstraints { make in
            make.center.equalToSuperview()
            make.size.equalTo(CGSize.init(width: contentWidth, height: contentHeight))
        }
        contentTextView.snp_makeConstraints { make in
            make.left.equalTo(bgView).offset(KRatio(20))
            make.right.equalTo(bgView).offset(KRatio(-20))
            make.top.equalTo(bgView).offset(KRatio(20))
        }
        //按鈕布局分為取消簇捍、確認(rèn)按鈕和只有確認(rèn)按鈕兩種情況,根據(jù)cancelTitle來(lái)判斷
        if cancelTitle.count == 0 {
            //隱藏cancelTitle
            cancelBtn.isHidden = true
            //surebtn據(jù)中
            confirmBtn.snp.makeConstraints { make in
                make.centerX.equalTo(bgView)
                make.size.equalTo(CGSize.init(width: btnWidth, height: btnHeight))
                make.bottom.equalTo(bgView).offset(KRatio(-17))
            }
        } else {
            cancelBtn.snp.makeConstraints { make in
                make.left.equalTo(bgView).offset(KRatio(20))
                make.bottom.equalTo(bgView).offset(KRatio(-17))
                make.size.equalTo(CGSize.init(width: btnWidth, height: btnHeight))
            }
            confirmBtn.snp.makeConstraints { make in
                make.bottom.size.equalTo(cancelBtn)
                make.right.equalTo(bgView).offset(KRatio(-20))
            }
        }
    }
}

extension FZAlertView: UITextViewDelegate {
    //對(duì)link富文本點(diǎn)擊進(jìn)行處理
    public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool {
        KLog("scheme = \(URL.scheme?.description) --- range = \(characterRange.description) --- inter = \(interaction)")
        for (index, model) in self.attributedArr!.enumerated() {
            if URL.absoluteString.contains(model.linkStr) {
                //如果url包含model中的linkUrl俏拱,那么說(shuō)明點(diǎn)擊的是該link跳轉(zhuǎn)暑塑,那么將index回傳回去
                if self.strCallBlock != nil {
                    self.strCallBlock!(index, model.linkStr)
                }
                return false
            }
        }
        return true
    }
}

extension FZAlertView {
    //獲取富文本
    private func getContentTextViewAttributedText(message: String) -> NSAttributedString {
        let attrStr = NSMutableAttributedString.init(string: message)
        attrStr.addAttribute(NSAttributedString.Key.font, value: KFont(CGFloat(KRatio(15))), range: NSRange.init(location: 0, length: message.count))
        if self.attributedArr!.count > 0 {
            for model in attributedArr! {
                //根據(jù)數(shù)組添加字體、顏色锅必、link富文本
                //跳轉(zhuǎn)鏈接如果不是http或https鏈接跳轉(zhuǎn)事格,那么就在后面追加://
                attrStr.addAttributes([NSAttributedString.Key.font: KFont(CGFloat(KRatio(16))), NSAttributedString.Key.foregroundColor: model.linkColor, NSAttributedString.Key.link: model.linkStr.contains("http") ? model.linkStr : model.linkStr+"://"], range: model.linkRange)
            }
        }
        return attrStr
    }
}

//MARK: FZAlertViewModel
@objcMembers
open class FZAlertViewModel: NSObject {
    public let linkStr: String         //富文本link點(diǎn)擊后跳轉(zhuǎn)的urlStr
    public let linkRange: NSRange      //富文本可跳轉(zhuǎn)的range范圍
    public let linkColor: UIColor
    
    public init(linkStr: String, linkRange: NSRange, linkColor: UIColor = UIColor.hex("#333333")) {
        self.linkStr = linkStr
        self.linkRange = linkRange
        self.linkColor = linkColor
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市搞隐,隨后出現(xiàn)的幾起案子驹愚,更是在濱河造成了極大的恐慌,老刑警劉巖劣纲,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件逢捺,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡癞季,警方通過(guò)查閱死者的電腦和手機(jī)劫瞳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)绷柒,“玉大人志于,你說(shuō)我怎么就攤上這事》夏溃” “怎么了伺绽?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)嗜湃。 經(jīng)常有香客問(wèn)我奈应,道長(zhǎng),這世上最難降的妖魔是什么购披? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任钥组,我火速辦了婚禮,結(jié)果婚禮上今瀑,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好橘荠,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布屿附。 她就那樣靜靜地躺著,像睡著了一般哥童。 火紅的嫁衣襯著肌膚如雪挺份。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,125評(píng)論 1 297
  • 那天贮懈,我揣著相機(jī)與錄音匀泊,去河邊找鬼。 笑死朵你,一個(gè)胖子當(dāng)著我的面吹牛各聘,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播抡医,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼躲因,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了忌傻?” 一聲冷哼從身側(cè)響起大脉,我...
    開(kāi)封第一講書(shū)人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎水孩,沒(méi)想到半個(gè)月后镰矿,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡俘种,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年秤标,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片安疗。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡抛杨,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出荐类,到底是詐尸還是另有隱情怖现,我是刑警寧澤,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布玉罐,位于F島的核電站屈嗤,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏吊输。R本人自食惡果不足惜饶号,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望季蚂。 院中可真熱鬧茫船,春花似錦琅束、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至然眼,卻和暖如春艾船,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背高每。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來(lái)泰國(guó)打工屿岂, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人鲸匿。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓爷怀,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親晒骇。 傳聞我的和親對(duì)象是個(gè)殘疾皇子霉撵,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容