Avec SwiftyAttributes , vous pouvez créer des chaînes attribuées comme tel:
let fancyString = " Hello World! " . withTextColor ( . blue ) . withUnderlineStyle ( . styleSingle ) Alternativement, utilisez l'énumération Attribute :
let fancyString = " Hello World! " . withAttributes ( [
. backgroundColor ( . magenta ) ,
. strokeColor ( . orange ) ,
. strokeWidth ( 1 ) ,
. baselineOffset ( 5.2 )
] )Vous pouvez également combiner facilement les chaînes attribuées en utilisant un signe plus:
let fancyString = " Hello " . withFont ( . systemFont ( ofSize : 12 ) ) + " World! " . withFont ( . systemFont ( ofSize : 18 ) )SwiftyAttributes soutient chaque attribut disponible dans Cocoa et Cocoa Touch.
dependencies: [
. package ( url : " https://github.com/eddiekaiger/SwiftyAttributes.git " , from : " 5.3.0 " )
] pod 'SwiftyAttributes'
github "eddiekaiger/SwiftyAttributes"
L'initialisation des chaînes attribuées dans SwiftyAttributes peut être effectuée de plusieurs façons:
Utilisation des extensions with[Attribute] :
" Hello World " . withUnderlineColor ( . red ) . withUnderlineStyle ( . styleDouble ) Utilisation des extensions d'énumération Attribute :
" Hello World " . withAttributes ( [ . underlineColor ( . red ) , . underlineStyle ( . styleDouble ) ] ) Utilisation de l'énumération d' Attribute dans un initialiseur:
NSAttributedString ( string : " Hello World " , swiftyAttributes : [ . kern ( 5 ) , . backgroundColor ( . gray ) ] ) Vous pouvez récupérer l'attribut à un emplacement spécifique en utilisant le NSAttributedString.Key Enum:
let attr : Attribute ? = myAttributedString . swiftyAttribute ( . shadow , at : 5 ) Plusieurs méthodes API sont fournies pour utiliser ces nouveaux enums ainsi que le type Range de Swift au lieu de NSRange . Certaines des signatures de méthode comprennent:
extension NSMutableAttributedString {
func addAttributes ( _ attributes : [ Attribute ] , range : Range < Int > )
func addAttributes ( _ attributes : [ Attribute ] , range : NSRange )
func setAttributes ( _ attributes : [ Attribute ] , range : Range < Int > )
func setAttributes ( _ attributes : [ Attribute ] , range : NSRange )
func replaceCharacters ( in range : Range < Int > , with str : String )
func replaceCharacters ( in range : Range < Int > , with attrString : NSAttributedString )
func deleteCharacters ( in range : Range < Int > )
func removeAttribute ( _ name : NSAttributedStringKey , range : Range < Int > )
}
extension NSAttributedString {
convenience init ( string str : String , swiftyAttributes : [ Attribute ] )
func withAttributes ( _ attributes : [ Attribute ] ) -> NSMutableAttributedString
func withAttribute ( _ attribute : Attribute ) -> NSMutableAttributedString
func attributedSubstring ( from range : Range < Int > ) -> NSAttributedString
func swiftyAttribute ( _ attrName : NSAttributedStringKey , at location : Int , effectiveRange range : NSRangePointer ? = nil ) -> Attribute ?
func swiftyAttributes ( in range : Range < Int > , options : NSAttributedString . EnumerationOptions = [ ] ) -> [ ( [ Attribute ] , Range < Int > ) ]
func enum erateSwiftyAttributes ( in enum erationRange : Range < Int > , options : NSAttributedString . EnumerationOptions = [ ] , using block : ( _ attrs : [ Attribute ] , _ range : Range < Int > , _ stop : UnsafeMutablePointer < ObjCBool > ) -> Void )
func enum erateSwiftyAttribute ( _ attrName : NSAttributedStringKey , in enum erationRange : Range < Int > , options : NSAttributedString . EnumerationOptions = [ ] , using block : ( _ value : Any ? , _ range : Range < Int > , _ stop : UnsafeMutablePointer < ObjCBool > ) -> Void )
}
extension String {
var attributedString : NSMutableAttributedString
func withAttributes ( _ attributes : [ Attribute ] ) -> NSMutableAttributedString
func withAttribute ( _ attribute : Attribute ) -> NSMutableAttributedString
}
// ... and more!Pour les questions, le soutien et les suggestions, veuillez ouvrir un problème.
SwiftyAttributes est disponible sous la licence MIT. Voir le fichier de licence pour plus d'informations.