Skip to content

Commit

Permalink
Updated for Swift 3
Browse files Browse the repository at this point in the history
  • Loading branch information
megastep committed Apr 6, 2016
1 parent 700c05e commit 7913605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/iOS/MidiMonitor/MidiMonitor/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ViewController: UIViewController, AKMIDIListener {
func midiSystemCommand(data:[UInt8]){
print("MIDI System Command: \(AKMIDISystemCommand(rawValue: data[0])!)")
var newString = "MIDI System Command: \(AKMIDISystemCommand(rawValue: data[0])!) \n"
for (var i = 0; i < data.count; i++){
for (var i in 0 ..< data.count){
newString.appendContentsOf("\(data[i]) ")
}
updateText(newString)
Expand Down

0 comments on commit 7913605

Please sign in to comment.