UIButton在苹果6plus上有下滑线
解决方案:
1.设置button上的文字时使用以下这个方法
/**
设置按钮上的文字
*/
func setButViewTitle(content:String){
let attributedString = NSMutableAttributedString(string: content)
attributedString.addAttribute(.underlineStyle, value: NSUnderlineStyle.styleNone.rawValue, range: NSRange(location: 0, length: attributedString.length))
self.setAttributedTitle(attributedString, for: .normal)
}
2.自定义UIButton
//
// MyUIButtonView.swift
// wulian
//
// Created by 陕西帮你电子科技有限公司 on 2019/3/5.
// Copyright © 2019 陕西帮你电子科技有限公司. All rights reserved.
// 自定义基类按钮
import UIKit
class MyUIButtonView: UIButton {
private var butLabel:UILabel?
override init(frame: CGRect) {
super.init(frame: frame)
self.initView()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self.initV