Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Nirma/Attributed
µframework for Attributed strings.
https://github.com/Nirma/Attributed
attributedlabel attributedstring attributedtext
Last synced: 3 months ago
JSON representation
µframework for Attributed strings.
- Host: GitHub
- URL: https://github.com/Nirma/Attributed
- Owner: Nirma
- License: mit
- Created: 2016-12-08T01:45:56.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T07:08:04.000Z (over 1 year ago)
- Last Synced: 2024-07-19T13:48:40.693Z (4 months ago)
- Topics: attributedlabel, attributedstring, attributedtext
- Language: Swift
- Homepage:
- Size: 116 KB
- Stars: 754
- Watchers: 14
- Forks: 37
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-swift - Attributed - Modern µframework for attributed strings. (Libs / Text)
- awesome-ios-star - Attributed - Modern Swift µframework for attributed strings. (Text / Other Testing)
- awesome-swift - Attributed - Modern µframework for attributed strings. (Libs / Text)
- awesome-ios - Attributed - Modern Swift µframework for attributed strings. (Text / Other Testing)
- fucking-awesome-swift - Attributed - Modern µframework for attributed strings. (Libs / Text)
- awesome-swift - Attributed - µframework for Attributed strings. ` 📝 3 months ago ` (Text [🔝](#readme))
README
# Attributed
[![Build Status](https://travis-ci.org/Nirma/Attributed.svg?branch=master)](https://travis-ci.org/Nirma/Attributed)
![CodeCov](https://img.shields.io/codecov/c/github/Nirma/Attributed.svg)
![Swift 5.0](https://img.shields.io/badge/Swift-5.0-orange.svg)
[![CocoaPods compatible](https://img.shields.io/cocoapods/v/AttributedLib.svg)](#cocoapods)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)µframework for Attributed strings.
## What is Attributed?
Attributed aims to be a drop in replacement to the current version of the `NSAttributedString` API.The `NSAttributedString` interface has a few shortcomings. If you donʼt know the key and type of value needed to set a certain attribute, you have to spend time checking documentation. Another concern is safety: passing a dictionary of type `[String: Any]` to the constructor of `NSAttributedString` is a potential crash at runtime waiting to happen.
Attributed provides developers a nicer alternative by extending the current `NSAttributedString` interface with a fluent, strongly typed, and easy to use API.
# Features
- [x] Create `NSAttributedString` instances with a strongly typed, simple, and fluid interface
- [x] Combine `NSAttributedString`s with `+`
- [x] Partially apply Attributes to parts of an `NSAttributedString` by providing a `Range`### Donʼt see a feature you need?
Feel free to open an [issue](https://github.com/Nirma/Attributed/issues) requesting the feature you want or send over a pull request!# Usage
### Creating a new `NSAttributedString` by closure composition
```swift
"This is not a string".at.attributed {
return $0.foreground(color: .red)
.font(UIFont(name: "Chalkduster", size: 24.0)!)
.underlineStyle(.styleSingle)
}
```### Creating a new `NSAttributedString` by passing an attributes object
First create an `Attributes` object:
```swift
let attributes = Attributes {
return $0.foreground(color: .red)
.font(UIFont(name: "Chalkduster", size: 24.0)!)
.underlineStyle(.styleSingle)
}
```then simply apply the `Attributes` to a `String`:
```swift
"Hello".at.attributed(with: attributes)
```### Combining `NSAttributedString` with `+`
This library defines an concatenation operator `+` for concatentating instances of `NSAttributedString`.
`+` works with `NSAttributedString` no different than it does for `String`.
This can be useful for combining `NSAttributedStrings` with different attributes to produce the
desired effect without having to specify ranges to apply different attributes to.```swift
let bodyAttributes = Attributes {
return $0.foreground(color: .purple)
.font(UIFont(name: "Noteworthy-Light", size: 20.0)!)
}let authorAttributes = bodyAttributes.foreground(color: .black)
"I think theres something strangely musical about noise.".at.attributed(with: bodyAttributes)
+ "\n - Trent Reznor".at.attributed(with: authorAttributes)
```## Installation
#### Carthage
If you use Carthage to manage your dependencies, simply add
Attributed to your `Cartfile`:```
github "Nirma/Attributed"
```If you use Carthage to build your dependencies, make sure you have added `Attributed.framework` to the "_Linked Frameworks and Libraries_" section of your target, and have included `Attributed.framework` in your Carthage framework copying build phase.
#### CocoaPods
If you use CocoaPods to manage your dependencies, simply add
Attributed to your `Podfile`:```ruby
pod 'AttributedLib'
```## Requirements
* Xcode 9.0
* Swift 4.0+## Contribution
Contributions are more than welcome!## License
Attributed is free software, and may be redistributed under the terms specified in the [LICENSE] file.
[LICENSE]: /LICENSE