저렴한 NSAttributedString
11298 단어 NSAttributedStringiOS디자인Swift아이폰
이 기사는
✨ 싸다! ! 유익! ! 염가 CSS! ! ✨ 을 iOS에서 NSAttributedString을 사용하여 구현한 것입니다.
위 기사에서 사용된
Poppins
는 iOS 글꼴에 없었기 때문에 비슷한 글꼴을 사용했습니다.똑같은 것은 아니지만 대체로 같은 느낌으로 구현할 수 있었습니다.
import UIKit
class ViewController: UIViewController {
@IBOutlet private weak var label: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
setupLabel()
}
private func setupLabel() {
let attributeText = NSMutableAttributedString(string: "19,800円")
let textSize = attributeText.string.characters.count
attributeText.addAttributes(baseAttributes, range: NSRange(location: 0, length: textSize))
attributeText.addAttributes(priceLargeAttributes, range: NSRange(location: 0, length: 3))
attributeText.addAttributes(priceSpaceAttributes, range: NSRange(location: 5, length: 2))
attributeText.addAttributes(yenAttributets, range: NSRange(location: 6, length: 1))
label.attributedText = attributetText
}
private var baseAttributes: [String: Any] {
let shadow = NSShadow()
shadow.shadowOffset = CGSize(width: 5.0, height: 5.0)
shadow.shadowBlurRadius = 5.0
let attributes: [String: Any] = [
NSForegroundColorAttributeName: #colorLiteral(red: 0.7803921569, green: 0.01960784314, blue: 0.02352941176, alpha: 1),
NSStrokeColorAttributeName: #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1),
NSStrokeWidthAttributeName: -3.0,
NSShadowAttributeName: shadow,
NSFontAttributeName: UIFont(name: "AmericanTypewriter-CondensedBold", size: 40.0)!,
NSKernAttributeName: -2.0,
NSObliquenessAttributeName: 0.4, // 文字を斜めにする
]
return attributes
}
private var priceLargeAttributes: [String: Any] {
let attributes: [String: Any] = [
NSFontAttributeName: UIFont(name: "AmericanTypewriter-CondensedBold", size: 50.0)!,
]
return attributes
}
private var priceSpaceAttributes: [String: Any] {
let attributes: [String: Any] = [
NSKernAttributeName: 7.0,
]
return attributes
}
private var yenAttributes: [String: Any] {
let attributes: [String: Any] = [
NSFontAttributeName: UIFont(name: "HiraginoSans-W6", size: 25.0)!,
NSObliquenessAttributeName: 0.0,
]
return attributes
}
}
Reference
이 문제에 관하여(저렴한 NSAttributedString), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/edm/items/3c3c556612dcac152243텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)