Skip to content
James Richard edited this page Jul 18, 2014 · 13 revisions

Welcome to TableSchemer's wiki! Here you'll find information about installation and usage of TableSchemer.

Installing TableSchemer

Because Swift cannot be compiled into a static library we don't support CocoaPods just yet. For now, you'll have to copy the files under the Sources directory into your project.

Usage

The recommended usage of TableSchemer is to use the closure methods that pass in builder objects.

let tableScheme = TableScheme() { (builder) in
    builder.buildSchemeSet { (builder) in
        builder.buildScheme { (scheme: BasicScheme) in
            // Configure your scheme
        }
    }
}
`

For more details on using TableSchemer and it's built in Schemes check out our Using Table Schemer page.
For more details on creating your own TableSchemer schemes check out our Custom Schemes page.
Clone this wiki locally