NSAttributedString
Undocumented
-
Mechanica
Initializes and returns a
new
NSAttributedString object from thehtml
contained in the given string. - Parameters: - html: an HTML string. - Note: The HTML import mechanism is meant for implementing something like markdown (that is, text styles, colors, and so on), not for general HTML import. Apple Documentation - Warning: Using the HTML importer (NSHTMLTextDocumentType) is only possible on the main thread.Declaration
Swift
public convenience init?(html: String)
Parameters
html
an HTML string.
-
Mechanica
Returns a
new
NSAttributedString appending the right NSAttributedString to the left NSAttributedString.Declaration
Swift
static public func + (lhs: NSAttributedString, rhs: NSAttributedString) -> NSAttributedString
-
Mechanica
Returns a
new
NSAttributedString appending the right NSAttributedString to the left String.Declaration
Swift
static public func + (lhs: String, rhs: NSAttributedString) -> NSAttributedString