Code Monkey home page Code Monkey logo

fretboard's Introduction

Fretboard

Customisable guitar fretboard view for iOS, tvOS and macOS with CoreGraphics.

Demo

Mac

alt tag

alt tag

iOS

alt tag

Apple TV

alt tag

Storyboard

alt tag

Requierments

  • Swift 3.0+
  • iOS 8.0+
  • tvOS 9.0+
  • macOS 10.9+

Install

use_frameworks!
pod 'Fretboard'

Usage

Create a FretboardView, subclass of UIView with code or from storyboard.

Note selection

Fretboard uses MusicTheory library to render scales, chords or notes.
You need to select/unselect notes, chords or scales on fretboard property of your FretboardView instance.

let chord = Chord(type: .maj, key: .a)
fretboardView?.fretboard.select(chord: chord)

let scale = Scale(type: .major, key: .e)
fretboardView?.fretboard.select(scale: scale)

let note = Note(type: .a, octave: 2)
fretboardView?.fretboard.select(note: note)

fretboardView?.fretboard.unselect(note: note)
fretboardView?.fretboard.unselectAll()

You could also set isChordModeOn property to true, if you want the render only lowest pitch on a string.
I recommend 3, 4 or 5 frets to use that feature.

Tuning

Fretboard has a neat tuning property which is a FretboardTuning protocol, lets you define strings and their represented notes on fretboard.
It has a bunch of premade tunings in GuitarTuning, BassTuning and UkeleleTuning enums.
Also, you can define custom tunings with CustomTuning struct with custom string count as well.

let tuning = CustomTuning(
  strings: [
    Note(type: .g, octave: 2),
    Note(type: .d, octave: 2),
    Note(type: .a, octave: 1),
    Note(type: .e, octave: 1)
  ], 
  description: "My Custom Tuning")
fretboardView?.fretboard.tuning = tuning

Direction

You could render fretboard either horizontal or vertical with direction property on fretboard of type FretboardDirection.

freboardView?.fretboard.direction = .horizontal
freboardView?.fretboard.direction = .vertical

Frets

You could render any range of fretboard with startIndex and count properties on fretboard.
startIndex is the starting fret and 0 is open string, defaults 0.
count is the fret count and defaults 5.

Customisation

You could change the line widths and colors of frets and strings.
You could change the colors of fret numbers, string names, notes from code or storyboard.
Rendering note names on pressed notes and optional.
Also rendering fret numbers and strings names are optional too.
See the properties of FretboardView.

FretBud

This library is used in my iOS/tvOS app FretBud, check it out!

alt tag

fretboard's People

Contributors

cemolcay avatar

Watchers

Cen 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.