Code Monkey home page Code Monkey logo

chainedattributedstring's Introduction

ChainedAttributedString

Platform License

Easy and convenient way to create attributed strings in Swift

Screenshot

Table of contents

Features

Features:

  • create attributed string from normal string by simply calling .attributedString()
  • join many attributed string by using + operator
  • chain many attributes to your string one after another for whole string or part of it

Available attributes:

  • text font
  • text color
  • text background color
  • kern spacing
  • strike through style and color
  • underline style and color
  • link

Installation

The prefered way is to use CococaPods.

use_frameworks!
pod 'ChainedAttributedString', '~> 1.0.0'

If you can't use CocoaPods for some reason, then grab the files in ChainedAttributedString/ and put it in your project.

Usage

Just import library by calling import ChainedAttributedString and you are ready to go!

Sample operations:

import ChainedAttributedString

//join strings
let one = "Test".attributedString() + "One".attributedString()

//apply attributes
self.exampleLabel.attributedText = "This sample text shows chained attributes".attributedString()
.textColor(UIColor.redColor(), forText: "sample")
.font(UIFont.boldSystemFontOfSize(20), forText: "This")
.kernSpacing(-1, forText: "text")
.strikeThrough(2, forText: "shows")
.strikeThroughColor(UIColor.blueColor())
.underline(2, forText: "attributes")

Author

adamszeremeta, [email protected]

License

ChainedAttributedString is released under the MIT license.

chainedattributedstring's People

Watchers

James Cloos avatar Thirawat Phannet avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.