美文网首页iOS集合
Swift_技巧(5)_ActiveLabel使用,Label添

Swift_技巧(5)_ActiveLabel使用,Label添

作者: 丶纳凉 | 来源:发表于2017-08-07 16:17 被阅读562次

    一丶介绍

    添加点击事件


    Paste_Image.png

    二丶使用

    第三方:
    https://github.com/optonaut/ActiveLabel.swift

    自定义方法的使用

    var protocolLabel:ActiveLabel? = nil
    
    if  protocolLabel == nil {
        
        protocolLabel = ActiveLabel()
        let customType = ActiveType.custom(pattern: "\\《奇乐现金用户使用协议》")
        protocolLabel?.enabledTypes = [customType]
        protocolLabel?.numberOfLines = 2
        protocolLabel?.text = "点击注册按钮,即表示您同意《奇乐现金用户使用协议》"
        protocolLabel?.font = kFontSize_14
        protocolLabel?.customColor[customType] = kColor_459ACA
        protocolLabel?.textColor = kColor_TabBar_normal
        protocolLabel?.handleCustomTap(for: customType, handler: { (customType) in
            print("1111111")
        })
        self.view.addSubview(protocolLabel!)
        protocolLabel?.frame = CGRect.init(x: 0, y: 0, width: 182, height: 40)
        protocolLabel?.center = CGPoint.init(x: kScreenW * 0.5, y: 518)
    }
    
    

    三丶总结

    挺方便的.

    相关文章

      网友评论

        本文标题:Swift_技巧(5)_ActiveLabel使用,Label添

        本文链接:https://www.haomeiwen.com/subject/phjalxtx.html