This is a Swift library that can generate CAShapeLayers for any chord within it's database. All you need to do is supply a Key (C, C#, etc) and a suffix (Major, Minor, sus4, etc) to find the appropriate chord. Each chord comes with a few variants.
The database is pulled from another project I found a while ago, but cannot remember where that was. Please do not rely 100% on this data, as I have found that a few chords are incorrect. If you find any of your own, please open a PR correcting these.
This library is currently in Beta. Everything works, and the drawing speeds are fine, but there is lots of room for improvement.
I am using this library in my music study app "Mustud" with no problems at all.
- iOS 13+
- macOS 10.12+ -> It works, but you'll need to flip the results since it uses iOS drawing coordinates.
- Xcode 11+
Only supports Swift Package Manager at this time.
import SwiftyChords
Chords.guitar
Returns all chords based on C
Chords.guitar.matching(key: .c)
Returns all major chords in the database.
Chords.guitar.matching(suffix: .major)
Returns all CMajor chords. These will be in order of position on the fretboard, starting at the nut.
Chords.guitar.matching(key: .c).matching(suffix: .major)
There are a number of ways to use the CAShapeLayer. You can add it directly to a view, or convert it to an Image.
To use it, we just need a chord!
let chordPosition = Chords.guitar.matching(key: .c).matching(suffix: .major).first!
let frame = CGRect(x: 0, y: 0, width: 100, height: 150) // I find these sizes to be good.
let layer = chordPosition.layer(rect: frame, showFingers: true, showChordName: true, forScreen: true)
imageView.image = layer?.image() // might be exepensive. Use CALayer when possible.
frame
is the size of the shape layer. The size of your chord.
showFingers
set this to true if you want the finger positions to be drawn on each note.
showChordName
set this to true if you want the chord name displayed. You may want to hide this if you were building a flashcard or chord quiz app.
forScreen
This is for dark mode support. Set it to false if you want it to always be drawn with a white background and black text (ideal for printing).