Slash is a simple, extensible markup language for styling NSAttributedStrings. The language is similar in appearance to HTML, however the meaning of each tag is user-defined.
The first paragraph of this readme might be expressed in Slash using the markup:
<h1>Slash</h1>
Slash is a <strong>simple</strong>, <strong>extensible</strong> markup language
that simplifies the creation of NSAttributedStrings. The language is similar in
appearance to HTML, however the meaning of each tag is user-defined.
We can create a new NSAttributedString from this markup with:
NSAttributedString *myAttributedString = [SLSMarkupParser attributedStringWithMarkup:markup error:NULL];
The resulting string will be formatted much as if you'd dropped the equivalent HTML into a browser.
On OS X and iOS 6.0 onwards, Slash provides the following tags:
- h1
- h2
- h3
- h4
- h5
- h6
- em
- strong
To customize the appearance of these tags, define additional tags, or use a completely different set of tags, pass in a dictionary defining an attributes dictionary for each tag.
NSDictionary *style = @{
@"$default" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue" size:14]},
@"strong" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:14]},
@"em" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Italic" size:14]},
@"h1" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Medium" size:48]},
@"h2" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Medium" size:36]},
@"h3" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Medium" size:32]},
@"h4" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Medium" size:24]},
@"h5" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Medium" size:18]},
@"h6" : @{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Medium" size:16]}
};
NSAttributedString *myAttributedString = [SLSMarkupParser attributedStringWithMarkup:markup style:style error:NULL];
When a piece of text belongs to multiple elements, the attributes applied will be the union of each tag's dictionary, with the innermost elements' attributes taking priority. For a list of attributes supported by the Cocoa/Cocoa Touch text rendering system, see the documentation for iOS or OSX.
If you want to use either the ">" or "<" characters, you'll need to escape them using a backslash (eg: \>
).
Note that the linked attributes are only supported on iOS from 6.0 onwards.
- Add
pod 'Slash'
to your podfile #import <Slash/Slash.h>
git clone https://github.com/chrisdevereux/Slash.git
- Add Slash.xcodeproj as a child project
- Add Slash-iOS or Slash-OSX as a project dependency
- Link with libSlash-iOS.a or libSlash-OSX.a
- Add
$(BUILT_PRODUCTS_DIR)/include
to your project's header search paths (if it isn't already there) #import <Slash/Slash.h>
iOS 4.3 or OS X 10.6 (64 bit) upwards.
Attributed string handling is limited prior to iOS 6, and certain features of Slash require iOS 6. Be sure to check the header documentation if you are targeting earlier. You will also need to use a custom view (such as NIAttributedLabel or TTTAttributedLabel) to display the strings, and the format required of the attribute dictionaries in your style will be defined by that view.
Constructing a 200 character attributed string with 5 tagged sections takes approximately 0.5ms on an iPad 3rd gen when built in release mode. If you are parsing large strings, consider doing so on a background queue.
Slash is released under an MIT license.
Chris Devereux