Flexible Mustache templates for Swift

Overview

GRMustache.swift Swift Platforms License

Mustache templates for Swift

Latest release: October 23, 2016 • version 2.0.0 • CHANGELOG

Requirements: iOS 8.0+ / OSX 10.9+ / tvOS 9.0+ • Xcode 8+ • Swift 3

Follow @groue on Twitter for release announcements and usage tips.


FeaturesUsageInstallationDocumentation


Features

GRMustache extends the genuine Mustache language with built-in goodies and extensibility hooks that let you avoid the strict minimalism of Mustache when you need it.

  • Support for the full Mustache syntax
  • Filters, as {{ uppercase(name) }}
  • Template inheritance, as in hogan.js, mustache.java and mustache.php.
  • Built-in goodies
  • GRMustache.swift does not rely on the Objective-C runtime. It lets you feed your templates with ad-hoc values or your existing models, without forcing you to refactor your Swift code into Objective-C objects.

Usage

The library is built around two main APIs:

  • The Template(...) initializer that loads a template.
  • The Template.render(...) method that renders your data.

document.mustache:

Hello {{name}}
Your beard trimmer will arrive on {{format(date)}}.
{{#late}}
Well, on {{format(realDate)}} because of a Martian attack.
{{/late}}
import Mustache

// Load the `document.mustache` resource of the main bundle
let template = try Template(named: "document")

// Let template format dates with `{{format(...)}}`
let dateFormatter = DateFormatter()
dateFormatter.dateStyle = .medium
template.register(dateFormatter, forKey: "format")

// The rendered data
let data: [String: Any] = [
    "name": "Arthur",
    "date": Date(),
    "realDate": Date().addingTimeInterval(60*60*24*3),
    "late": true
]

// The rendering: "Hello Arthur..."
let rendering = try template.render(data)

Installation

CocoaPods

CocoaPods is a dependency manager for Xcode projects.

To use GRMustache.swift with CocoaPods, specify in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!

pod 'GRMustache.swift'

Carthage

Carthage is another dependency manager for Xcode projects.

To use GRMustache.swift with Carthage, specify in your Cartfile:

github "groue/GRMustache.swift"

Swift Package Manager

The Swift Package Manager is the open source tool for managing the distribution of Swift code.

To use GRMustache.swift with the Swift Package Manager, add https://github.com/groue/GRMustache.swift to the list of your package dependencies:

import PackageDescription

let package = Package(
    name: "MyPackage",
    targets: [],
    dependencies: [
        .Package(url: "https://github.com/groue/GRMustache.swift", majorVersion: 2, minor: 0),
    ]
)

Check groue/GRMustacheSPM for a sample Swift package that uses GRMustache.swift.

Manually

  1. Download a copy of GRMustache.swift.

  2. Checkout the latest GRMustache.swift version:

    cd [GRMustache.swift directory]
    git checkout 2.0.0
  3. Embed the Mustache.xcodeproj project in your own project.

  4. Add the MustacheOSX, MustacheiOS, or MustacheWatchOS target in the Target Dependencies section of the Build Phases tab of your application target.

  5. Add the the Mustache.framework from the targetted platform to the Embedded Binaries section of the General tab of your target.

See MustacheDemoiOS for an example of such integration.

Documentation

To fiddle with the library, open the Xcode/Mustache.xcworkspace workspace: it contains a Mustache-enabled Playground at the top of the files list.

External links:

Rendering templates:

Feeding templates:

Misc:

Loading Templates

Templates may come from various sources:

  • Raw Swift strings:

    let template = try Template(string: "Hello {{name}}")
  • Bundle resources:

    // Loads the "document.mustache" resource of the main bundle:
    let template = try Template(named: "document")
  • Files and URLs:

    let template = try Template(path: "/path/to/document.mustache")
    let template = try Template(URL: templateURL)
  • Template Repositories:

    Template repositories represent a group of templates. They can be configured independently, and provide neat features like template caching. For example:

    // The repository of Bash templates, with extension ".sh":
    let repo = TemplateRepository(bundle: Bundle.main, templateExtension: "sh")
    
    // Disable HTML escaping for Bash scripts:
    repo.configuration.contentType = .text
    
    // Load the "script.sh" resource:
    let template = repo.template(named: "script")!

For more information, check:

Errors

Not funny, but they happen. Standard errors of domain NSCocoaErrorDomain, etc. may be thrown whenever the library needs to access the file system or other system resource. Mustache-specific errors are of type MustacheError:

do {
    let template = try Template(named: "Document")
    let rendering = try template.render(data)
} catch let error as MustacheError {
    // Parse error at line 2 of template /path/to/template.mustache:
    // Unclosed Mustache tag.
    error.description
    
    // templateNotFound, parseError, or renderError
    error.kind
    
    // The eventual template at the source of the error. Can be a path, a URL,
    // a resource name, depending on the repository data source.
    error.templateID
    
    // The eventual faulty line.
    error.lineNumber
    
    // The eventual underlying error.
    error.underlyingError
}

Mustache Tags Reference

Mustache is based on tags: {{name}}, {{#registered}}...{{/registered}}, {{>include}}, etc.

Each one of them performs its own little task:

Variable Tags

A Variable tag {{value}} renders the value associated with the key value, HTML-escaped. To avoid HTML-escaping, use triple mustache tags {{{value}}}:

let template = try Template(string: "{{value}} - {{{value}}}")

// Mario & Luigi - Mario & Luigi
let data = ["value": "Mario & Luigi"]
let rendering = try template.render(data)

Section Tags

A Section tag {{#value}}...{{/value}} is a common syntax for three different usages:

  • conditionally render a section.
  • loop over a collection.
  • dig inside an object.

Those behaviors are triggered by the value associated with value:

Falsey values

If the value is falsey, the section is not rendered. Falsey values are:

  • missing values
  • false boolean
  • zero numbers
  • empty strings
  • empty collections
  • NSNull

For example:

let template = try Template(string: "<{{#value}}Truthy{{/value}}>")

// "<Truthy>"
try template.render(["value": true])
// "<>"
try template.render([:])                  // missing value
try template.render(["value": false])     // false boolean

Collections

If the value is a collection (an array or a set), the section is rendered as many times as there are elements in the collection, and inner tags have direct access to the keys of elements:

Template:

{{# friends }}
- {{ name }}
{{/ friends }}

Data:

[
  "friends": [
    [ "name": "Hulk Hogan" ],
    [ "name": "Albert Einstein" ],
    [ "name": "Tom Selleck" ],
  ]
]

Rendering:

- Hulk Hogan
- Albert Einstein
- Tom Selleck

Other Values

If the value is not falsey, and not a collection, then the section is rendered once, and inner tags have direct access to the value's keys:

Template:

{{# user }}
- {{ name }}
- {{ score }}
{{/ user }}

Data:

[
  "user": [
    "name": "Mario"
    "score": 1500
  ]
]

Rendering:

- Mario
- 1500

Inverted Section Tags

An Inverted section tag {{^value}}...{{/value}} renders when a regular section {{#value}}...{{/value}} would not. You can think of it as the Mustache "else" or "unless".

Template:

{{# persons }}
- {{name}} is {{#alive}}alive{{/alive}}{{^alive}}dead{{/alive}}.
{{/ persons }}
{{^ persons }}
Nobody
{{/ persons }}

Data:

[
  "persons": []
]

Rendering:

Nobody

Data:

[
  "persons": [
    ["name": "Errol Flynn", "alive": false],
    ["name": "Sacha Baron Cohen", "alive": true]
  ]
]

Rendering:

- Errol Flynn is dead.
- Sacha Baron Cohen is alive.

Partial Tags

A Partial tag {{> partial }} includes another template, identified by its name. The included template has access to the currently available data:

document.mustache:

Guests:
{{# guests }}
  {{> person }}
{{/ guests }}

person.mustache:

{{ name }}

Data:

[
  "guests": [
    ["name": "Frank Zappa"],
    ["name": "Lionel Richie"]
  ]
]

Rendering:

Guests:
- Frank Zappa
- Lionel Richie

Recursive partials are supported, but your data should avoid infinite loops.

Partial lookup depends on the origin of the main template:

File System

Partial names are relative paths when the template comes from the file system (via paths or URLs):

// Load /path/document.mustache
let template = Template(path: "/path/document.mustache")

// {{> partial }} includes /path/partial.mustache.
// {{> shared/partial }} includes /path/shared/partial.mustache.

Partials have the same file extension as the main template.

// Loads /path/document.html
let template = Template(path: "/path/document.html")

// {{> partial }} includes /path/partial.html.

When your templates are stored in a hierarchy of directories, you can use absolute paths to partials, with a leading slash. For that, you need a template repository which will define the root of absolute partial paths:

let repository = TemplateRepository(directoryPath: "/path")
let template = repository.template(named: ...)

// {{> /shared/partial }} includes /path/shared/partial.mustache.

Bundle Resources

Partial names are interpreted as resource names when the template is a bundle resource:

// Load the document.mustache resource from the main bundle
let template = Template(named: "document")

// {{> partial }} includes the partial.mustache resource.

Partials have the same file extension as the main template.

// Load the document.html resource from the main bundle
let template = Template(named: "document", templateExtension: "html")

// {{> partial }} includes the partial.html resource.

General case

Generally speaking, partial names are always interpreted by a Template Repository:

  • Template(named:...) uses a bundle-based template repository: partial names are resource names.
  • Template(path:...) uses a file-based template repository: partial names are relative paths.
  • Template(URL:...) uses a URL-based template repository: partial names are relative URLs.
  • Template(string:...) uses a template repository that can’t load any partial.
  • templateRepository.template(named:...) uses the partial loading mechanism of the template repository.

Check TemplateRepository.swift for more information (read on cocoadocs.org).

Dynamic Partials

A tag {{> partial }} includes a template, the one that is named "partial". One can say it is statically determined, since that partial has already been loaded before the template is rendered:

let repo = TemplateRepository(bundle: Bundle.main)
let template = try repo.template(string: "{{#user}}{{>partial}}{{/user}}")

// Now the `partial.mustache` resource has been loaded. It will be used when
// the template is rendered. Nothing can change that.

You can also include dynamic partials. To do so, use a regular variable tag {{ partial }}, and provide the template of your choice for the key "partial" in your rendered data:

// A template that delegates the rendering of a user to a partial.
// No partial has been loaded yet.
let template = try Template(string: "{{#user}}{{partial}}{{/user}}")

// The user
let user = ["firstName": "Georges", "lastName": "Brassens", "occupation": "Singer"]

// Two different partials:
let partial1 = try Template(string: "{{firstName}} {{lastName}}")
let partial2 = try Template(string: "{{occupation}}")

// Two different renderings of the same template:
// "Georges Brassens"
try template.render(["user": user, "partial": partial1])
// "Singer"
try template.render(["user": user, "partial": partial2])

Partial Override Tags

GRMustache.swift supports Template Inheritance, like hogan.js, mustache.java and mustache.php.

A Partial Override Tag {{< layout }}...{{/ layout }} includes another template inside the rendered template, just like a regular partial tag {{> partial}}.

However, this time, the included template can contain blocks, and the rendered template can override them. Blocks look like sections, but use a dollar sign: {{$ overrideMe }}...{{/ overrideMe }}.

The included template layout.mustache below has title and content blocks that the rendered template can override:

<html>
<head>
    <title>{{$ title }}Default title{{/ title }}</title>
</head>
<body>
    <h1>{{$ title }}Default title{{/ title }}</h1>
    {{$ content }}
        Default content
    {{/ content }}}
</body>
</html>

The rendered template article.mustache:

{{< layout }}

    {{$ title }}{{ article.title }}{{/ title }}
    
    {{$ content }}
        {{{ article.html_body }}}
        <p>by {{ article.author }}</p>
    {{/ content }}
    
{{/ layout }}
let template = try Template(named: "article")
let data = [
    "article": [
        "title": "The 10 most amazing handlebars",
        "html_body": "<p>...</p>",
        "author": "John Doe"
    ]
]
let rendering = try template.render(data)

The rendering is a full HTML page:

<html>
<head>
    <title>The 10 most amazing handlebars</title>
</head>
<body>
    <h1>The 10 most amazing handlebars</h1>
    <p>...</p>
    <p>by John Doe</p>
</body>
</html>

A few things to know:

  • A block {{$ title }}...{{/ title }} is always rendered, and rendered once. There is no boolean checks, no collection iteration. The "title" identifier is a name that allows other templates to override the block, not a key in your rendered data.

  • A template can contain several partial override tags.

  • A template can override a partial which itself overrides another one. Recursion is possible, but your data should avoid infinite loops.

  • Generally speaking, any part of a template can be refactored with partials and partial override tags, without requiring any modification anywhere else (in other templates that depend on it, or in your code).

Dynamic Partial Overrides

Like a regular partial tag, a partial override tag {{< layout }}...{{/ layout }} includes a statically determined template, the very one that is named "layout".

To override a dynamic partial, use a regular section tag {{# layout }}...{{/ layout }}, and provide the template of your choice for the key "layout" in your rendered data.

Set Delimiters Tags

Mustache tags are generally enclosed by "mustaches" {{ and }}. A Set Delimiters Tag can change that, right inside a template.

Default tags: {{ name }}
{{=<% %>=}}
ERB-styled tags: <% name %>
<%={{ }}=%>
Default tags again: {{ name }}

There are also APIs for setting those delimiters. Check Configuration.tagDelimiterPair in Configuration.swift (read on cocoadocs.org).

Comment Tags

{{! Comment tags }} are simply not rendered at all.

Pragma Tags

Several Mustache implementations use Pragma tags. They start with a percent % and are not rendered at all. Instead, they trigger implementation-specific features.

GRMustache.swift interprets two pragma tags that set the content type of the template:

  • {{% CONTENT_TYPE:TEXT }}
  • {{% CONTENT_TYPE:HTML }}

HTML templates is the default. They HTML-escape values rendered by variable tags {{name}}.

In a text template, there is no HTML-escaping. Both {{name}} and {{{name}}} have the same rendering. Text templates are globally HTML-escaped when included in HTML templates.

For a more complete discussion, see the documentation of Configuration.contentType in Configuration.swift.

The Context Stack and Expressions

The Context Stack

Variable and section tags fetch values in the data you feed your templates with: {{name}} looks for the key "name" in your input data, or, more precisely, in the context stack.

That context stack grows as the rendering engine enters sections, and shrinks when it leaves. Its top value, pushed by the last entered section, is where a {{name}} tag starts looking for the "name" identifier. If this top value does not provide the key, the tag digs further down the stack, until it finds the name it looks for.

For example, given the template:

{{#family}}
- {{firstName}} {{lastName}}
{{/family}}

Data:

[
    "lastName": "Johnson",
    "family": [
        ["firstName": "Peter"],
        ["firstName": "Barbara"],
        ["firstName": "Emily", "lastName": "Scott"],
    ]
]

The rendering is:

- Peter Johnson
- Barbara Johnson
- Emily Scott

The context stack is usually initialized with the data you render your template with:

// The rendering starts with a context stack containing `data`
template.render(data)

Precisely speaking, a template has a base context stack on top of which the rendered data is added. This base context is always available whatever the rendered data. For example:

// The base context contains `baseData`
template.extendBaseContext(baseData)

// The rendering starts with a context stack containing `baseData` and `data`
template.render(data)

The base context is usually a good place to register filters:

template.extendBaseContext(["each": StandardLibrary.each])

But you will generally register filters with the register(:forKey:) method, because it prevents the rendered data from overriding the name of the filter:

template.register(StandardLibrary.each, forKey: "each")

See Template for more information on the base context.

Expressions

Variable and section tags contain Expressions. name is an expression, but also article.title, and format(article.modificationDate). When a tag renders, it evaluates its expression, and renders the result.

There are four kinds of expressions:

  • The dot . aka "Implicit Iterator" in the Mustache lingo:

    Implicit iterator evaluates to the top of the context stack, the value pushed by the last entered section.

    It lets you iterate over collection of strings, for example. {{#items}}<{{.}}>{{/items}} renders <1><2><3> when given [1,2,3].

  • Identifiers like name:

    Evaluation of identifiers like name goes through the context stack until a value provides the name key.

    Identifiers can not contain white space, dots, parentheses and commas. They can not start with any of those characters: {}&$#^/<>.

  • Compound expressions like article.title and generally <expression>.<identifier>:

    This time there is no going through the context stack: article.title evaluates to the title of the article, regardless of title keys defined by enclosing contexts.

    .title (with a leading dot) is a compound expression based on the implicit iterator: it looks for title at the top of the context stack.

    Compare these three templates:

    • ...{{# article }}{{ title }}{{/ article }}...
    • ...{{# article }}{{ .title }}{{/ article }}...
    • ...{{ article.title }}...

    The first will look for title anywhere in the context stack, starting with the article object.

    The two others are identical: they ensure the title key comes from the very article object.

  • Filter expressions like format(date) and generally <expression>(<expression>, ...):

    Filters are introduced below.

Values

Templates render values:

template.render(["name": "Luigi"])
template.render(Person(name: "Luigi"))

You can feed templates with:

  • Values that adopt the MustacheBoxable protocol such as String, Int, NSObject and its subclasses (see Standard Swift Types Reference and Custom Types)

  • Arrays, sets, and dictionaries (Swift arrays, sets, dictionaries, and Foundation collections). This does not include other collections, such as Swift ranges.

  • A few function types such as filter functions, lambdas, and other functions involved in advanced boxes.

  • Goodies such as Foundation's formatters.

Standard Swift Types Reference

GRMustache.swift comes with built-in support for the following standard Swift types:

Bool

  • {{bool}} renders "0" or "1".
  • {{#bool}}...{{/bool}} renders if and only if bool is true.
  • {{^bool}}...{{/bool}} renders if and only if bool is false.

Numeric Types

GRMustache supports Int, UInt, Int64, UInt64, Float, Double and CGFloat:

  • {{number}} renders the standard Swift string interpolation of number.
  • {{#number}}...{{/number}} renders if and only if number is not 0 (zero).
  • {{^number}}...{{/number}} renders if and only if number is 0 (zero).

The Swift types Int8, UInt8, etc. have no built-in support: turn them into one of the three general types before injecting them into templates.

To format numbers, you can use NumberFormatter:

let percentFormatter = NumberFormatter()
percentFormatter.numberStyle = .percent

let template = try Template(string: "{{ percent(x) }}")
template.register(percentFormatter, forKey: "percent")

// Rendering: 50%
let data = ["x": 0.5]
let rendering = try template.render(data)

More info on Formatter.

String

  • {{string}} renders string, HTML-escaped.
  • {{{string}}} renders string, not HTML-escaped.
  • {{#string}}...{{/string}} renders if and only if string is not empty.
  • {{^string}}...{{/string}} renders if and only if string is empty.

Exposed keys:

  • string.length: the length of the string.

Set

  • {{set}} renders the concatenation of the renderings of set elements.
  • {{#set}}...{{/set}} renders as many times as there are elements in the set, pushing them on top of the context stack.
  • {{^set}}...{{/set}} renders if and only if the set is empty.

Exposed keys:

  • set.first: the first element.
  • set.count: the number of elements in the set.

Array

  • {{array}} renders the concatenation of the renderings of array elements.
  • {{#array}}...{{/array}} renders as many times as there are elements in the array, pushing them on top of the context stack.
  • {{^array}}...{{/array}} renders if and only if the array is empty.

Exposed keys:

  • array.first: the first element.
  • array.last: the last element.
  • array.count: the number of elements in the array.

In order to render array indexes, or vary the rendering according to the position of elements in the array, use the each filter from the Standard Library:

document.mustache:

Users with their positions:
{{# each(users) }}
- {{ @indexPlusOne }}: {{ name }}
{{/}}

Comma-separated user names:
{{# each(users) }}{{ name }}{{^ @last }}, {{/}}{{/}}.
let template = try! Template(named: "document")

// Register StandardLibrary.each for the key "each":
template.register(StandardLibrary.each, forKey: "each")

// Users with their positions:
// - 1: Alice
// - 2: Bob
// - 3: Craig
// 
// Comma-separated user names: Alice, Bob, Craig.
let users = [["name": "Alice"], ["name": "Bob"], ["name": "Craig"]]
let rendering = try! template.render(["users": users])

Dictionary

  • {{dictionary}} renders the standard Swift string interpolation of dictionary (not very useful).
  • {{#dictionary}}...{{/dictionary}} renders once, pushing the dictionary on top of the context stack.
  • {{^dictionary}}...{{/dictionary}} does not render.

In order to iterate over the key/value pairs of a dictionary, use the each filter from the Standard Library:

document.mustache:

{{# each(dictionary) }}
    key: {{ @key }}, value: {{.}}
{{/}}
let template = try! Template(named: "document")

// Register StandardLibrary.each for the key "each":
template.register(StandardLibrary.each, forKey: "each")

// Renders "key: name, value: Freddy Mercury"
let dictionary = ["name": "Freddy Mercury"]
let rendering = try! template.render(["dictionary": dictionary])

NSObject

The rendering of NSObject depends on the actual class:

  • NSFastEnumeration

    When an object conforms to the NSFastEnumeration protocol, like NSArray, it renders just like Swift Array. NSSet is an exception, rendered as a Swift Set. NSDictionary, the other exception, renders as a Swift Dictionary.

  • NSNumber is rendered as a Swift Bool, Int, UInt, Int64, UInt64, Float or Double, depending on its value.

  • NSString is rendered as String

  • NSNull renders as:

    • {{null}} does not render.
    • {{#null}}...{{/null}} does not render.
    • {{^null}}...{{/null}} renders.
  • For other NSObject, those default rules apply:

    • {{object}} renders the description method, HTML-escaped.
    • {{{object}}} renders the description method, not HTML-escaped.
    • {{#object}}...{{/object}} renders once, pushing the object on top of the context stack.
    • {{^object}}...{{/object}} does not render.

    With support for Objective-C runtime, templates can render object properties: {{ user.name }}.

    Subclasses can alter this behavior by overriding the mustacheBox method of the MustacheBoxable protocol. For more information, check the rendering of Custom Types below.

Custom Types

NSObject subclasses

NSObject subclasses can trivially feed your templates:

// An NSObject subclass
class Person : NSObject {
    let name: String
    
    init(name: String) {
        self.name = name
    }
}

// Charlie Chaplin has a mustache.
let person = Person(name: "Charlie Chaplin")
let template = try Template(string: "{{name}} has a mustache.")
let rendering = try template.render(person)

When extracting values from your NSObject subclasses, GRMustache.swift uses the Key-Value Coding method valueForKey:, as long as the key is "safe" (safe keys are the names of declared properties, including NSManagedObject attributes).

Subclasses can alter this default behavior by overriding the mustacheBox method of the MustacheBoxable protocol, described below:

Pure Swift Values and MustacheBoxable

Key-Value Coding is not available for Swift enums, structs and classes, regardless of eventual @objc or dynamic modifiers. Swift values can still feed templates, though, with a little help.

// Define a pure Swift object:
struct Person {
    let name: String
}

To let Mustache templates extract the name key out of a person so that they can render {{ name }} tags, we need to explicitly help the Mustache engine by conforming to the MustacheBoxable protocol:

extension Person : MustacheBoxable {
    
    // Feed templates with a dictionary:
    var mustacheBox: MustacheBox {
        return Box(["name": self.name])
    }
}

Your mustacheBox implementation will generally call the Box function on a regular value that itself adopts the MustacheBoxable protocol (such as String or Int), or an array, a set, or a dictionary.

Now we can render persons, arrays of persons, dictionaries of persons, etc:

// Freddy Mercury has a mustache.
let person = Person(name: "Freddy Mercury")
let template = try Template(string: "{{name}} has a mustache.")
let rendering = try template.render(person)

Boxing a dictionary is an easy way to build a box. However there are many kinds of boxes: check the rest of this documentation.

Lambdas

Mustache lambdas are functions that let you perform custom rendering. There are two kinds of lambdas: those that process section tags, and those that render variable tags.

// `{{fullName}}` renders just as `{{firstName}} {{lastName}}.`
let fullName = Lambda { "{{firstName}} {{lastName}}" }

// `{{#wrapped}}...{{/wrapped}}` renders the content of the section, wrapped in
// a <b> HTML tag.
let wrapped = Lambda { (string) in "<b>\(string)</b>" }

// <b>Frank Zappa is awesome.</b>
let templateString = "{{#wrapped}}{{fullName}} is awesome.{{/wrapped}}"
let template = try Template(string: templateString)
let data: [String: Any] = [
    "firstName": "Frank",
    "lastName": "Zappa",
    "fullName": fullName,
    "wrapped": wrapped]
let rendering = try template.render(data)

Lambdas are a special case of custom rendering functions. The raw RenderFunction type gives you extra flexibility when you need to perform custom rendering. See CoreFunctions.swift (read on cocoadocs.org).

☝️ Note: Mustache lambdas slightly overlap with dynamic partials. Lambdas are required by the Mustache specification. Dynamic partials are more efficient because they avoid parsing lambda strings over and over.

Filters

Filters apply like functions, with parentheses: {{ uppercase(name) }}.

Generally speaking, using filters is a three-step process:

// 1. Define the filter using the `Filter()` function:
let uppercase = Filter(...)

// 2. Assign a name to your filter, and register it in a template:
template.register(uppercase, forKey: "uppercase")

// 3. Render
template.render(...)

It helps thinking about four kinds of filters:

Value Filters

Value filters transform any type of input. They can return anything as well.

For example, here is a square filter which squares integers:

// Define the `square` filter.
//
// square(n) evaluates to the square of the provided integer.
let square = Filter { (n: Int?) in
    guard let n = n else {
        // No value, or not an integer: return nil.
        // We could throw an error as well.
        return nil
    }
    
    // Return the result
    return n * n
}

// Register the square filter in our template:
let template = try Template(string: "{{n}} × {{n}} = {{square(n)}}")
template.register(square, forKey:"square")

// 10 × 10 = 100
let rendering = try template.render(["n": 10])

Filters can accept a precisely typed argument as above. You may prefer managing the value type yourself:

// Define the `abs` filter.
//
// abs(x) evaluates to the absolute value of x (Int or Double):
let absFilter = Filter { (box: MustacheBox) in
    switch box.value {
    case let int as Int:
        return abs(int)
    case let double as Double:
        return abs(double)
    default:
        return nil
    }
}

You can process collections and dictionaries as well, and return new ones:

// Define the `oneEveryTwoItems` filter.
//
// oneEveryTwoItems(collection) returns the array of even items in the input
// collection.
let oneEveryTwoItems = Filter { (box: MustacheBox) in
    // `box.arrayValue` returns a `[MustacheBox]` for all boxed collections
    // (Array, Set, NSArray, etc.).
    guard let boxes = box.arrayValue else {
        // No value, or not a collection: return the empty box
        return nil
    }
    
    // Rebuild another array with even indexes:
    var result: [MustacheBox] = []
    for (index, box) in boxes.enumerated() where index % 2 == 0 {
        result.append(box)
    }
    
    return result
}

// A template where the filter is used in a section, so that the items in the
// filtered array are iterated:
let templateString = "{{# oneEveryTwoItems(items) }}<{{.}}>{{/ oneEveryTwoItems(items) }}"
let template = try Template(string: templateString)

// Register the oneEveryTwoItems filter in our template:
template.register(oneEveryTwoItems, forKey: "oneEveryTwoItems")

// <1><3><5><7><9>
let rendering = try template.render(["items": Array(1..<10)])

Multi-arguments filters are OK as well. but you use the VariadicFilter() function, this time:

// Define the `sum` filter.
//
// sum(x, ...) evaluates to the sum of provided integers
let sum = VariadicFilter { (boxes: [MustacheBox]) in
    var sum = 0
    for box in boxes {
        sum += (box.value as? Int) ?? 0
    }
    return sum
}

// Register the sum filter in our template:
let template = try Template(string: "{{a}} + {{b}} + {{c}} = {{ sum(a,b,c) }}")
template.register(sum, forKey: "sum")

// 1 + 2 + 3 = 6
let rendering = try template.render(["a": 1, "b": 2, "c": 3])

Filters can chain and generally be part of more complex expressions:

Circle area is {{ format(product(PI, circle.radius, circle.radius)) }} cm².

When you want to format values, just use NumberFormatter, DateFormatter, or generally any Foundation's Formatter. They are ready-made filters:

let percentFormatter = NumberFormatter()
percentFormatter.numberStyle = .percent

let template = try Template(string: "{{ percent(x) }}")
template.register(percentFormatter, forKey: "percent")

// Rendering: 50%
let data = ["x": 0.5]
let rendering = try template.render(data)

More info on formatters.

Pre-Rendering Filters

Value filters as seen above process input values, which may be of any type (bools, ints, collections, etc.). Pre-rendering filters always process strings, whatever the input value. They have the opportunity to alter those strings before they get actually included in the final template rendering.

You can, for example, reverse a rendering:

// Define the `reverse` filter.
//
// reverse(x) renders the reversed rendering of its argument:
let reverse = Filter { (rendering: Rendering) in
    let reversedString = String(rendering.string.characters.reversed())
    return Rendering(reversedString, rendering.contentType)
}

// Register the reverse filter in our template:
let template = try Template(string: "{{reverse(value)}}")
template.register(reverse, forKey: "reverse")

// ohcuorG
try template.render(["value": "Groucho"])

// 321
try template.render(["value": 123])

Such filter does not quite process a raw string, as you have seen. It processes a Rendering, which is a flavored string, a string with its contentType (text or HTML).

This rendering will usually be text: simple values (ints, strings, etc.) render as text. Our reversing filter preserves this content-type, and does not mangle HTML entities:

// &gt;lmth&lt;
try template.render(["value": "<html>"])

Custom Rendering Filters

An example will show how they can be used:

// Define the `pluralize` filter.
//
// {{# pluralize(count) }}...{{/ }} renders the plural form of the
// section content if the `count` argument is greater than 1.
let pluralize = Filter { (count: Int?, info: RenderingInfo) in
    
    // The inner content of the section tag:
    var string = info.tag.innerTemplateString
    
    // Pluralize if needed:
    if let count = count, count > 1 {
        string += "s"  // naive
    }
    
    return Rendering(string)
}

// Register the pluralize filter in our template:
let templateString = "I have {{ cats.count }} {{# pluralize(cats.count) }}cat{{/ }}."
let template = try Template(string: templateString)
template.register(pluralize, forKey: "pluralize")

// I have 3 cats.
let data = ["cats": ["Kitty", "Pussy", "Melba"]]
let rendering = try template.render(data)

As those filters perform custom rendering, they are based on RenderFunction, just like lambdas. Check the RenderFunction type in CoreFunctions.swift for more information about the RenderingInfo and Rendering types (read on cocoadocs.org).

Advanced Filters

All the filters seen above are particular cases of FilterFunction. "Value filters", "Pre-rendering filters" and "Custom rendering filters" are common use cases that are granted with specific APIs.

Yet the library ships with a few built-in filters that don't quite fit any of those categories. Go check their documentation. And since they are all written with public GRMustache.swift APIs, check also their source code, for inspiration. The general FilterFunction itself is detailed in CoreFunctions.swift (read on cocoadocs.org).

Advanced Boxes

Values that feed templates are able of many different behaviors. Let's review some of them:

  • Bool can trigger or prevent the rendering of sections:

    {{# isVerified }}VERIFIED{{/ isVerified }}
    {{^ isVerified }}NOT VERIFIED{{/ isVerified }}
    
  • Arrays render sections multiple times, and expose the count, first, and last keys:

    You see {{ objects.count }} objects:
    {{# objects }}
    - {{ name }}
    {{/ objects }}
    
  • Dictionaries expose all their keys:

    {{# user }}
    - {{ name }}
    - {{ age }}
    {{/ user }}
    
  • NSObject exposes all its properties:

    {{# user }}
    - {{ name }}
    - {{ age }}
    {{/ user }}
    
  • Foundation's Formatter is able to format values (more information):

    {{ format(date) }}
    
  • StandardLibrary.each is a filter that defines some extra keys when iterating an array (more information):

    {{# each(items) }}
    - {{ @indexPlusOne }}: {{ name }}
    {{/}}
    

This variety of behaviors is made possible by the MustacheBox type. Whenever a value, array, filter, etc. feeds a template, it is turned into a box that interact with the rendering engine.

Let's describe in detail the rendering of the {{ F(A) }} tag, and shed some light on the available customizations:

  1. The A and F expressions are evaluated: the rendering engine looks in the context stack for boxes that return a non-empty box for the keys "A" and "F". The key-extraction service is provided by a customizable KeyedSubscriptFunction.

    This is how NSObject exposes its properties, and Dictionary, its keys.

  2. The customizable FilterFunction of the F box is evaluated with the A box as an argument.

    The Result box may well depend on the customizable value of the A box, but all other facets of the A box may be involved. This is why there are various types of filters.

  3. The rendering engine then looks in the context stack for all boxes that have a customized WillRenderFunction. Those functions have an opportunity to process the Result box, and eventually return another one.

    This is how, for example, a boxed DateFormatter can format all dates in a section: its WillRenderFunction formats dates into strings.

  4. The resulting box is ready to be rendered. For regular and inverted section tags, the rendering engine queries the customizable boolean value of the box, so that {{# F(A) }}...{{/}} and {{^ F(A) }}...{{/}} can't be both rendered.

    The Bool type obviously has a boolean value, but so does String, so that empty strings are considered falsey.

  5. The resulting box gets eventually rendered: its customizable RenderFunction is executed. Its Rendering result is HTML-escaped, depending on its content type, and appended to the final template rendering.

    Lambdas use such a RenderFunction, so do pre-rendering filters and custom rendering filters.

  6. Finally the rendering engine looks in the context stack for all boxes that have a customized DidRenderFunction.

    This one is used by Localizer and Logger goodies.

All those customizable properties are exposed in the low-level MustacheBox initializer:

// MustacheBox initializer
init(
    value value: Any? = nil,
    boolValue: Bool? = nil,
    keyedSubscript: KeyedSubscriptFunction? = nil,
    filter: FilterFunction? = nil,
    render: RenderFunction? = nil,
    willRender: WillRenderFunction? = nil,
    didRender: DidRenderFunction? = nil)

We'll below describe each of them individually, even though you can provide several ones at the same time:

  • value

    The optional value parameter gives the boxed value. The value is used when the box is rendered (unless you provide a custom RenderFunction). It is also returned by the value property of MustacheBox.

    let aBox = MustacheBox(value: 1)
    
    // Renders "1"
    let template = try Template(string: "{{a}}")
    try template.render(["a": aBox])
  • boolValue

    The optional boolValue parameter tells whether the Box should trigger or prevent the rendering of regular {{#section}}...{{/}} and inverted {{^section}}...{{/}} tags. The default value is true.

    // Render "true", "false"
    let template = try Template(string:"{{#.}}true{{/.}}{{^.}}false{{/.}}")
    try template.render(MustacheBox(boolValue: true))
    try template.render(MustacheBox(boolValue: false))
  • keyedSubscript

    The optional keyedSubscript parameter is a KeyedSubscriptFunction that lets the Mustache engine extract keys out of the box. For example, the {{a}} tag would call the subscript function with "a" as an argument, and render the returned box.

    The default value is nil, which means that no key can be extracted.

    Check the KeyedSubscriptFunction type in CoreFunctions.swift for more information (read on cocoadocs.org).

    let box = MustacheBox(keyedSubscript: { (key: String) in
        return Box("key:\(key)")
    })
    
    // Renders "key:a"
    let template = try Template(string:"{{a}}")
    try template.render(box)
  • filter

    The optional filter parameter is a FilterFunction that lets the Mustache engine evaluate filtered expression that involve the box. The default value is nil, which means that the box can not be used as a filter.

    Check the FilterFunction type in CoreFunctions.swift for more information (read on cocoadocs.org).

    let box = MustacheBox(filter: Filter { (x: Int?) in
        return x! * x!
    })
    
    // Renders "100"
    let template = try Template(string:"{{square(x)}}")
    try template.render(["square": box, "x": Box(10)])
  • render

    The optional render parameter is a RenderFunction that is evaluated when the Box is rendered.

    The default value is nil, which makes the box perform default Mustache rendering:

    • {{box}} renders the built-in Swift String Interpolation of the value, HTML-escaped.
    • {{{box}}} renders the built-in Swift String Interpolation of the value, not HTML-escaped.
    • {{#box}}...{{/box}} pushes the box on the top of the context stack, and renders the section once.

    Check the RenderFunction type in CoreFunctions.swift for more information (read on cocoadocs.org).

    let box = MustacheBox(render: { (info: RenderingInfo) in
        return Rendering("foo")
    })
    
    // Renders "foo"
    let template = try Template(string:"{{.}}")
    try template.render(box)
  • willRender & didRender

    The optional willRender and didRender parameters are a WillRenderFunction and DidRenderFunction that are evaluated for all tags as long as the box is in the context stack.

    Check the WillRenderFunction and DidRenderFunction type in CoreFunctions.swift for more information (read on cocoadocs.org).

    let box = MustacheBox(willRender: { (tag: Tag, box: MustacheBox) in
        return "baz"
    })
    
    // Renders "baz baz"
    let template = try Template(string:"{{#.}}{{foo}} {{bar}}{{/.}}")
    try template.render(box)

By mixing all those parameters, you can finely tune the behavior of a box.

Built-in goodies

The library ships with built-in goodies that will help you render your templates: format values, render array indexes, localize templates, etc.

Comments
  • Using template inheritance throws malloc error

    Using template inheritance throws malloc error

    Hi,

    I tried to make a simple project with 1 file inheriting from a layout file and it crashes with this error:

    malloc: *** error for object 0xfffffffc: Invalid signature for pointer dequeued from free list *** set a breakpoint in malloc_error_break to debug

    It is worth to note that I then tried the very same 2 files with GRMustache and it works without error

    For the record here is the code with GRMustache.swift:

              var error: NSError?
              if let template = Template(named: "link", bundle: webRootBundle, templateExtension: "html", encoding: NSUTF8StringEncoding, error: &error) {
    
                var person = Person(name: "Foo", age: 12)
    
                if let string = template.render(Box(person), error: &error) {
                  NSLog("html: %@", string)
                  // Crashes here!
                }
            }
    

    Here is the one also from swift but using GRMustache bridged:

    var error: NSError?
            var templateRepository = GRMustacheTemplateRepository(baseURL: webRootBundle.resourceURL!, templateExtension: "html", encoding: NSUTF8StringEncoding)
    
            if let template = templateRepository.templateNamed("link", error: &error) {
    
              var person = Person(name: "Foo", age: 12)
    
              if let string = template.renderObject(person, error: &error) {
                NSLog("html: %@", string)
                // Works
              }
    

    The version I was using was "master" no tag.

    Regards, Thierry

    bug 
    opened by Orion98MC 28
  • String literals as filter function arguments

    String literals as filter function arguments

    It seems like filter functions can not take string literals as arguments currently. I'm trying to build a date formatting function which takes a date format as an argument. Would you say this is inadvisable, or would it make sense to build support for this?

    let dateFilter = VariadicFilter() { (params: [MustacheBox]) in
        guard let date = params.first?.value as? NSDate, let format = params[1].value as? String else {
            return Box()
        }
        let dateFormatter = NSDateFormatter()
        dateFormatter.dateFormat = format
        return Box(dateFormatter.stringFromDate(date))
    }
    
    opened by njdehoog 17
  • Memory leaks

    Memory leaks

    Hey @groue, it's me again ;) Have you ever noticed any memory leaks in the framework? I have some memory leaks in my app, and when I use Instruments to track down the leak, it seems to point to GRMustache as the source:

    screen shot 2015-10-21 at 16 24 00

    I spent a bunch of time trying to figure out what could be the root cause, and if maybe I was doing something wrong that would cause this issue, but I can't figure it out. Do you have any ideas maybe?

    opened by njdehoog 10
  • Swift2 branch fails to compile with Xcode 7beta5

    Swift2 branch fails to compile with Xcode 7beta5

    Hi Gwendal,

    Here is the carthage log:

    *** Building scheme "Shared MustacheiOS" in Mustache.xcworkspace
    ** BUILD FAILED **
    
    
    The following build commands failed:
        CompileSwift normal x86_64
        CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
        CompileSwift normal i386
        CompileSwiftSources normal i386 com.apple.xcode.tools.swift.compiler
        Ld /Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Intermediates/Mustache.build/Release-iphonesimulator/MustacheiOS.build/Objects-normal/x86_64/Mustache normal x86_64
        Ld /Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Intermediates/Mustache.build/Release-iphonesimulator/MustacheiOS.build/Objects-normal/i386/Mustache normal i386
        CreateUniversalBinary /Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Products/Release-iphonesimulator/Mustache.framework/Mustache normal i386\ x86_64
        GenerateDSYMFile /Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Products/Release-iphonesimulator/Mustache.framework.dSYM /Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Products/Release-iphonesimulator/Mustache.framework/Mustache
    (8 failures)
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:52:45: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:53:44: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:54:38: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:55:37: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:84:45: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:85:44: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:86:38: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:87:37: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:620:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:622:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:624:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:626:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:628:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:630:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:632:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:634:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:636:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:638:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:640:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:1248:56: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:1299:62: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:1350:62: error: ambiguous use of 'Box'
    Assertion failed: (!failed && "Call arguments did not match up?"), function coerceCallArguments, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.52.2/src/swift/lib/Sema/CSApply.cpp, line 4085.
    <unknown>:0: error: unable to execute command: Abort trap: 6
    <unknown>:0: error: swift frontend command failed due to signal (use -v to see invocation)
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:52:45: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:53:44: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:54:38: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:55:37: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:84:45: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:85:44: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:86:38: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Goodies/EachFilter.swift:87:37: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:620:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:622:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:624:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:626:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:628:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:630:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:632:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:634:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:636:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:638:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:640:20: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:1248:56: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:1299:62: error: ambiguous use of 'Box'
    /Users/orion/LocalDevels/Capture/Carthage/Checkouts/GRMustache.swift/Mustache/Rendering/Box.swift:1350:62: error: ambiguous use of 'Box'
    Assertion failed: (!failed && "Call arguments did not match up?"), function coerceCallArguments, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.52.2/src/swift/lib/Sema/CSApply.cpp, line 4085.
    <unknown>:0: error: unable to execute command: Abort trap: 6
    <unknown>:0: error: swift frontend command failed due to signal (use -v to see invocation)
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    fatal error: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: /Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Intermediates/Mustache.build/Release-iphonesimulator/MustacheiOS.build/Objects-normal/i386/Mustache (No such file or directory)
    error: cannot parse the debug map for "/Users/orion/Library/Developer/Xcode/DerivedData/Mustache-ajobsmoxgrhhescihiwvjygyqbpr/Build/Products/Release-iphonesimulator/Mustache.framework/Mustache": No such file or directory
    A shell task failed with exit code 65
    
    

    Thanks and regards, Thierry

    opened by Orion98MC 10
  • Indexed arrays don't appear to work

    Indexed arrays don't appear to work

    Hi... I'm using the Swift1.2 branch, and am having trouble referencing array values via a direct index. eg. {{list.0}}. The following just outputs an empty string:

    let input = [
        "list" : [ "aaa", "bbb" ]
    ]
    let template = Template(string: "{{list.0}}")!
    println(template.render(Box(input))!)
    

    Interestingly, however, if I use {{list}}, then it outputs aaabbb. Just curious if fetching data from arrays using an index is supported?

    Of course, it could also be that (as a Mustache newbie) I am using the wrong notation.

    Thanks.

    wontfix 
    opened by edwardaux 10
  • Boxing a dictionary of type [String: Any]

    Boxing a dictionary of type [String: Any]

    Hey @groue, was wondering if you could help me out with an issue I have. I have a dictionary of type [String: Any] which contains metadata for the files I'm rendering. Any advice on how I can make this work with the MustacheBoxable protocol?

    question 
    opened by njdehoog 9
  • Linux support

    Linux support

    Looks like it should work on Linux #16 , but it actually throws tons of errors and warnings:

    swift build
    Compiling Swift Module 'Mustache' (32 sources)
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateAST.swift:38:10: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
        enum Type {
             ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateAST.swift:38:10: note: backticks can escape this name if it is important to use
        enum Type {
             ^~~~
             `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateAST.swift:38:10: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
        enum Type {
             ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateAST.swift:38:10: note: backticks can escape this name if it is important to use
        enum Type {
             ^~~~
             `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateCompiler.swift:383:14: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
            enum Type {
                 ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateCompiler.swift:383:14: note: backticks can escape this name if it is important to use
            enum Type {
                 ^~~~
                 `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateCompiler.swift:383:14: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
            enum Type {
                 ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateCompiler.swift:383:14: note: backticks can escape this name if it is important to use
            enum Type {
                 ^~~~
                 `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateCompiler.swift:81:232: error: cannot convert value of type 'String' to type 'NSString' in coercion
                        if (try! NSRegularExpression(pattern: "^CONTENT_TYPE\\s*:\\s*TEXT$", options: NSRegularExpressionOptions(rawValue: 0))).firstMatchInString(pragma, options: NSMatchingOptions(rawValue: 0), range: NSMakeRange(0, (pragma as NSString).length)) != nil {
                                                                                                                                                                                                                                           ^~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateCompiler.swift:88:239: error: cannot convert value of type 'String' to type 'NSString' in coercion
                        } else if (try! NSRegularExpression(pattern: "^CONTENT_TYPE\\s*:\\s*HTML$", options: NSRegularExpressionOptions(rawValue: 0))).firstMatchInString(pragma, options: NSMatchingOptions(rawValue: 0), range: NSMakeRange(0, (pragma as NSString).length)) != nil {
                                                                                                                                                                                                                                                  ^~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Context.swift:218:18: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
        private enum Type {
                     ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Context.swift:218:18: note: backticks can escape this name if it is important to use
        private enum Type {
                     ^~~~
                     `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Context.swift:218:18: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
        private enum Type {
                     ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Context.swift:218:18: note: backticks can escape this name if it is important to use
        private enum Type {
                     ^~~~
                     `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Template.swift:64:22: error: cannot convert value of type 'String' to type 'NSString' in coercion
            let nsPath = path as NSString
                         ^~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Template.swift:91:50: error: cannot convert value of type 'String' to type 'NSString' in coercion
            let templateName = (URL.lastPathComponent! as NSString).stringByDeletingPathExtension
                                ~~~~~~~~~~~~~~~~~~~~~^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/NSFormatter.swift:88:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateToken.swift:25:10: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
        enum Type {
             ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateToken.swift:25:10: note: backticks can escape this name if it is important to use
        enum Type {
             ^~~~
             `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateToken.swift:25:10: error: type member may not be named 'Type', since it would conflict with the 'foo.Type' expression
        enum Type {
             ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateToken.swift:25:10: note: backticks can escape this name if it is important to use
        enum Type {
             ^~~~
             `Type`
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:178:54: error: type 'NSURL' has no member 'fileURLWithPath'
            self.init(dataSource: URLDataSource(baseURL: NSURL.fileURLWithPath(directoryPath, isDirectory: true), templateExtension: templateExtension, encoding: encoding))
                                                         ^~~~~ ~~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:445:74: error: value of optional type 'String?' not unwrapped; did you mean to use '!' or '?'?
                self.baseURLAbsoluteString = baseURL.URLByStandardizingPath!.absoluteString
                                                                             ^
                                                                                           !
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:468:37: error: cannot convert value of type 'String' to type 'NSString' in coercion
                    templateFilename = (normalizedName as NSString).stringByAppendingPathExtension(templateExtension)!
                                        ^~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:484:16: error: value of optional type 'String?' not unwrapped; did you mean to use '!' or '?'?
                if templateAbsoluteString.rangeOfString(baseURLAbsoluteString)?.startIndex == templateAbsoluteString.startIndex {
                   ^
                                         !
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:484:91: error: value of optional type 'String?' not unwrapped; did you mean to use '!' or '?'?
                if templateAbsoluteString.rangeOfString(baseURLAbsoluteString)?.startIndex == templateAbsoluteString.startIndex {
                                                                                              ^
                                                                                                                    !
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:492:24: error: cannot convert value of type 'NSString' to type 'String' in coercion
                return try NSString(contentsOfURL: NSURL(string: templateID)!, encoding: encoding) as String
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:528:37: error: cannot convert value of type 'TemplateID' (aka 'String') to type 'NSString' in coercion
                    let relativePath = (normalizedBaseTemplateID as NSString).stringByDeletingLastPathComponent.stringByReplacingOccurrencesOfString(bundle.resourcePath!, withString:"")
                                        ^~~~~~~~~~~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/TemplateRepository.swift:536:24: error: cannot convert value of type 'NSString' to type 'String' in coercion
                return try NSString(contentsOfFile: templateID, encoding: encoding) as String
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:145:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:572:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:612:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:696:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:1192:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:1557:25: error: declarations in extensions cannot override yet
        public override var mustacheBox: MustacheBox {
                            ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:516:16: note: overridden declaration is here
        public var mustacheBox: MustacheBox {
                   ^
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:517:38: error: use of undeclared type 'NSFastEnumeration'
            if let enumerable = self as? NSFastEnumeration {
                                         ^~~~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:521:43: error: use of unresolved identifier 'NSFastGenerator'
                let array = GeneratorSequence(NSFastGenerator(enumerable)).map(BoxAnyObject)
                                              ^~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:621:43: error: value of type 'NSNumber' has no member 'objCType'
            let objCType = String.fromCString(self.objCType)!
                                              ^~~~ ~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:650:13: error: use of unresolved identifier 'NSLog'
                NSLog("GRMustache support for NSNumber of type \(objCType) is not implemented: value is discarded.")
                ^~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:697:20: error: cannot convert value of type 'NSString' to type 'String' in coercion
            return Box(self as String)
                       ^~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:906:9: error: use of unresolved identifier 'NSLog'
            NSLog("Mustache.BoxAnyObject(): value `\(object)` is does not conform to MustacheBoxable: it is discarded.")
            ^~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:1202:39: error: use of unresolved identifier 'NSFastGenerator'
            let array = GeneratorSequence(NSFastGenerator(self)).map(BoxAnyObject)
                                          ^~~~~~~~~~~~~~~
    /home/saulius/temp/GRMustacheSPM/Packages/GRMustache.swift-1.0.0/Sources/Box.swift:1560:52: error: use of unresolved identifier 'NSFastGenerator'
                    dictionaryValue: GeneratorSequence(NSFastGenerator(self)).reduce([String: MustacheBox](), combine: { (boxDictionary, key) in
                                                       ^~~~~~~~~~~~~~~
    <unknown>:0: error: build had 1 command failures
    error: exit(1): ["/home/saulius/Downloads/swift-DEVELOPMENT-SNAPSHOT-2016-01-25-a-ubuntu15.10/usr/bin/swift-build-tool", "-f", "/home/saulius/temp/GRMustacheSPM/.build/debug/Mustache.o/llbuild.yaml"]
    
    opened by sauliusgrigaitis 7
  • Swift Package Manager support

    Swift Package Manager support

    Now that Swift is open source, the need for a robust templating library has skyrocketed. I'd love to be able to use GRMustache on Linux, and since it doesn't depend on the Obj-C runtime, GRMustache is an awesome candidate!

    Could we get a Swift package manager package?

    opened by harlanhaskins 7
  • cocoapods support

    cocoapods support

    I find that I can't include this framework with command pod install. could you please add cocoapods support? I tried obj-c version and it is supported

    help wanted 
    opened by bluecitymoon 7
  • Parsing large templates causes tremendous memory allocation

    Parsing large templates causes tremendous memory allocation

    Thanks for the great library!

    I've been using GRMustache.swift for several months now and have been happy with the results. I'm using v0.11.0 from CocoaPods to generate a single-page report for printing in an enterprise business application.

    Recently, my team has been experiencing out of memory crashes, so I profiled the memory usage with Instruments and found the following culprit: return templateString.substringFromIndex(index).hasPrefix(string) (line 47 of TemplateParser.swift)

    I have 8 total templates, listed by their size in bytes: template file sizes in bytes

    My app preloads the templates in the background at start. It is protected by a GCD dispatch group, so subsequent uses of the templates wait for initial preloading to finish (which avoids a crash): appdelegate mustache preloading

    As you can see in the following screenshot, Mustache allocates 96.7% of the application's total allocated memory before it is killed by iOS: mustache heap allocations with cfstring

    For comparison, here is Instrument's display of the allocation statistics: overall heap allocation

    The problem seems to be that Swift is creating new immutable copies of the templateString with each call to substringFromIndex(String.CharacterView.Index) -> String, and these appear to be permanent as long as the app is alive. Being that the closure atString() is called throughout Mustache's parse(_:templateId:) method, the later parts of templateString become duplicated countless times for each template, causing massive amounts of memory usage.

    For my own usage, I am investigating using the sequences templateString.characters and string.characters that were introduced in iOS 9.0. This isn't ideal; I prefer to stick to an unmodified library. At the same time, I understand that compatibility with iOS 7.0+ greatly restricts string processing features in Swift.

    Any help is greatly appreciated.

    opened by rmgrimm 6
  • IOS7 and Xcode 7.0.1

    IOS7 and Xcode 7.0.1

    Hello, can I still to use GRMustache.swift with target ios7 Xcode 7? I try to copy manually the sources, but have some error (eg. attach).

    With GRMustache.swift 0.9.4 anche Xcode 6 I had no problems

    Thank's schermata 2015-10-13 alle 23 24 59

    opened by aalonzi 6
  • Static library support

    Static library support

    When we compile this Framework as Static Library (Mach-O Type as staticlib), at run time it doesn't type cast String, Int, Number as MustacheBox. I made a hot fix by adding below code changes in Box.swift to catch other data types and return as MustacheBox.

    Screenshot 2022-02-23 at 16 16 12
    opened by rupeshnandha 0
  • Mustache tags on new lines are replaced with empty space

    Mustache tags on new lines are replaced with empty space

    First off, great library!

    I might be missing some obvious syntax here, but given the following example:

    {{#someOptionalValue}}
    The value is {{someOptionalValue}}
    {{/someOptionalValue}}
    

    The output we get (assuming someOptionalValue is "Hello, World") is:

    
    The value is Hello, World
    
    

    Is there a way to modify the tags, such that the newlines before / after "The value is Hello, World" are removed? Eg:

    The value is Hello, World
    

    Currently it seems I can only achieve this by putting everything on one line:

    {{#someOptionalValue}}The value is {{someOptionalValue}}{{/someOptionalValue}}
    

    I have seem some references to Handlebars using a tilde to accomplish this, eg:

    {{~#someOptionalValue~}}
    The value is {{someOptionalValue}}
    {{/someOptionalValue}}
    

    But in attempting to do this with this repository's Mustache implementation, I get an error "Unmatched closing tag".

    Thanks,

    • Adam
    opened by AdamEisfeld 1
  • Add the `throwWhenMissing` option to the configuration

    Add the `throwWhenMissing` option to the configuration

    This is a first look at the https://github.com/groue/GRMustache.swift/issues/69 issue.

    With this PR it is possible to enable throwing when a box is empty, which means either the key is not in the context, or the key is in the context but its value is nil.

    What is really my intention is to only throw when the key is not in the context, but I am having difficulties finding a way of telling when an empty box is due to the key not being in the context or its value being zero. I could use some direction here.

    Is this something that you would like to merge?

    opened by acecilia 0
  • Is it possible to throw an error when a tag inside a template is missing?

    Is it possible to throw an error when a tag inside a template is missing?

    Is it possible to throw an error when a tag inside a template is missing? I could not find any issues mentioning this topic.

    For example, using the example in the readme as a reference, instead of:

    let template = try Template(string: "<{{#value}}Truthy{{/value}}>")
    // "<>"
    try template.render([:])                  // missing value
    

    do:

    let template = try Template(string: "<{{#value}}Truthy{{/value}}>")
    // Throw error: missing value
    try template.render([:])                  // missing value
    

    Thanks!

    opened by acecilia 0
  • Is it possible to detect plain text URLs and phone links and make it an actionable link?

    Is it possible to detect plain text URLs and phone links and make it an actionable link?

    Currently I use Mustache to display HTML articles that I retrieve from our web service.

    I wanted to know if there's a way to make Mustache detect URLs and/or telephones without the href tag.

    Mustache does its thing when we receive something like this:

      <p><a href=\ "http://www.instagram.com\">www.instagram.com</a>&nbsp;</p>
      <p><a href=\ "tel://+19145006953\" target=\ "_blank\">+19145006953</a></p>
    

    But doesn't detect it anything when it's just raw:

    <p>www.instagram.com</p>
    <p>+19145006953</p>
    

    Any suggestions? Thanks!

    opened by csfelipe 0
Releases(4.1.0)
  • 4.1.0(Sep 22, 2022)

    What's Changed

    • deprecated class keyword replaced with AnyObject by @BlixLT in https://github.com/groue/GRMustache.swift/pull/80
    • handle file and directory name include white space by @fumito-ito in https://github.com/groue/GRMustache.swift/pull/85
    • Updates README.md to reflect modern SPM syntax by @SamuelSchepp in https://github.com/groue/GRMustache.swift/pull/67
    • Run tests on Swift Package Manager by @fumito-ito in https://github.com/groue/GRMustache.swift/pull/86

    New Contributors

    • @BlixLT made their first contribution in https://github.com/groue/GRMustache.swift/pull/80

    Full Changelog: https://github.com/groue/GRMustache.swift/compare/4.0.1...4.1.0

    Source code(tar.gz)
    Source code(zip)
Owner
Gwendal Roué
iOS app developer, and author of a few open source libraries
Gwendal Roué
TSnackBarView is a simple and flexible UI component fully written in Swift

TSnackBarView is a simple and flexible UI component fully written in Swift. TSnackBarView helps you to show snackbar easily with 3 styles: normal, successful and error

Nguyen Duc Thinh 3 Aug 22, 2022
TDetailBoxView is a simple and flexible UI component fully written in Swift

TDetailBoxView is a simple and flexible UI component fully written in Swift. TDetailBoxView is developed to help users quickly display the detail screen without having to develop from scratch.

Nguyen Duc Thinh 2 Aug 18, 2022
TSwitchLabel is a simple and flexible UI component fully written in Swift.

TSwitchLabel is a simple and flexible UI component fully written in Swift. TSwitchLabel is developed for you to easily use when you need to design a UI with Label and Switch in the fastest way without having to spend time on develop from scratch.

Nguyen Duc Thinh 2 Aug 18, 2022
UIPheonix is a super easy, flexible, dynamic and highly scalable UI framework + concept for building reusable component/control-driven apps for macOS, iOS and tvOS

UIPheonix is a super easy, flexible, dynamic and highly scalable UI framework + concept for building reusable component/control-driven apps for macOS, iOS and tvOS

Mohsan Khan 29 Sep 9, 2022
A flexible container view featuring a solid background with rounded corners.

A flexible container view featuring a solid background with rounded corners.

Tim Oliver 13 Jan 22, 2022
Super awesome Swift minion for Core Data (iOS, macOS, tvOS)

⚠️ Since this repository is going to be archived soon, I suggest migrating to NSPersistentContainer instead (available since iOS 10). For other conven

Marko Tadić 306 Sep 23, 2022
UI Component. This is a copy swipe-panel from app: Apple Maps, Stocks. Swift version

ContainerController UI Component. This is a copy swipe-panel from app: https://www.apple.com/ios/maps/ Preview Requirements Installation CocoaPods Swi

Rustam 419 Dec 12, 2022
A message bar for iOS written in Swift.

Dodo, a message bar for iOS / Swift This is a UI widget for showing text messages in iOS apps. It is useful for showing short messages to the user, so

Evgenii Neumerzhitckii 874 Dec 13, 2022
Protocol oriented, type safe, scalable design system foundation swift framework for iOS.

Doric: Design System Foundation Design System foundation written in Swift. Protocol oriented, type safe, scalable framework for iOS. Features Requirem

Jay 93 Dec 6, 2022
Cool Animated music indicator view written in Swift

Cool Animated music indicator view written in Swift. ESTMusicIndicator is an implementation of NAKPlaybackIndicatorView in Swift for iOS 8. 本人著作的书籍《La

Aufree 465 Nov 28, 2022
An easy to use FAQ view for iOS written in Swift

FAQView An easy to use FAQ view for iOS written in Swift. This view is a subclass of UIView. Setup with CocoaPods If you are using CocoaPods add this

Mukesh Thawani 467 Dec 5, 2022
Whole, half or floating point ratings control written in Swift

FloatRatingView A simple rating view for iOS written in Swift! Supports whole, half or floating point values. I couldn't find anything that easily set

Glen Yi 546 Dec 8, 2022
:octocat:💧 A slider widget with a popup bubble displaying the precise value selected. Swift UI library made by @Ramotion

FLUID SLIDER A slider widget with a popup bubble displaying the precise value selected written on Swift. We specialize in the designing and coding of

Ramotion 1.9k Dec 23, 2022
An UITextView in Swift. Support auto growing, placeholder and length limit.

GrowingTextView Requirements iOS 8.0 or above Installation CocoaPods GrowingTextView is available through CocoaPods. To install it, simply add the fol

Kenneth Tsang 941 Jan 5, 2023
A customizable color picker for iOS in Swift

IGColorPicker is a fantastic color picker ?? written in Swift. Table of Contents Documentation Colors Style Other features Installation Example Gettin

iGenius 272 Dec 17, 2022
Swift based simple information view with pointed arrow.

InfoView View to show small text information blocks with arrow pointed to another view.In most cases it will be a button that was pressed. Example To

Anatoliy Voropay 60 Feb 4, 2022
A UITextView subclass that adds support for multiline placeholder written in Swift.

KMPlaceholderTextView A UITextView subclass that adds support for multiline placeholder written in Swift. Usage You can set the value of the placehold

Zhouqi Mo 794 Jan 7, 2023
Powerful and easy-to-use vector graphics Swift library with SVG support

Macaw Powerful and easy-to-use vector graphics Swift library with SVG support We are a development agency building phenomenal apps. What is Macaw? Mac

Exyte 5.9k Jan 1, 2023
Material design components for iOS written in Swift

MaterialKit NOTE: This project is unmaintained. Material design components (inspired by Google Material Design) for iOS written in Swift Please feel f

Le Van Nghia 2.5k Jan 5, 2023