├── .gitignore ├── AVAEMixerSample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── dev.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── dev.xcuserdatad │ └── xcschemes │ ├── AVAEMixerSample.xcscheme │ └── xcschememanagement.plist ├── AVAEMixerSample ├── AVAE.storyboard ├── AppDelegate.h ├── AppDelegate.m ├── AppDelegate.swift ├── AudioEngine.h ├── AudioEngine.m ├── AudioEngine.swift ├── AudioEngineViewController.h ├── AudioEngineViewController.m ├── AudioEngineViewController.swift ├── AudioViewController.h ├── AudioViewController.m ├── AudioViewController.swift ├── CAAVAudioUnitView.h ├── CAAVAudioUnitView.m ├── CAAVAudioUnitView.swift ├── CAAVParameterView.h ├── CAAVParameterView.m ├── CAAVParameterView.swift ├── CAUITransportButton.h ├── CAUITransportButton.m ├── CAUITransportButton.swift ├── DistortionViewController.h ├── DistortionViewController.m ├── DistortionViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-568h.png │ │ ├── Default-Landscape~iPad-No-Status.png │ │ ├── Default-Landscape~iPad-No-Status@2x.png │ │ ├── Default-Landscape~iPad.png │ │ ├── Default-Landscape~iPad@2x.png │ │ ├── Default-Landscape~iPhone-6-Plus@3x.png │ │ ├── Default-Portrait~iPad-No-Status.png │ │ ├── Default-Portrait~iPad-No-Status@2x.png │ │ ├── Default-Portrait~iPad.png │ │ ├── Default-Portrait~iPad@2x.png │ │ ├── Default-Portrait~iPhone-6-Plus@3x.png │ │ ├── Default-Portrait~iPhone-6@3x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── Info.plist ├── InstrumentViewController.h ├── InstrumentViewController.m ├── InstrumentViewController.swift ├── LaunchScreen.storyboard ├── MixerViewController.h ├── MixerViewController.m ├── MixerViewController.swift ├── PlayerViewController.h ├── PlayerViewController.m ├── PlayerViewController.swift ├── ReverbViewController.h ├── ReverbViewController.m ├── ReverbViewController.swift ├── SequencerViewController.h ├── SequencerViewController.m ├── SequencerViewController.swift ├── bluesyRiff.mid ├── drumLoop.caf ├── gs_instruments.dls ├── main.m └── marimbaLoop.caf ├── LICENSE.txt ├── README.md └── README2.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /AVAEMixerSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AVAEMixerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AVAEMixerSample.xcodeproj/project.xcworkspace/xcuserdata/dev.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample.xcodeproj/project.xcworkspace/xcuserdata/dev.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AVAEMixerSample.xcodeproj/xcuserdata/dev.xcuserdatad/xcschemes/AVAEMixerSample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample.xcodeproj/xcuserdata/dev.xcuserdatad/xcschemes/AVAEMixerSample.xcscheme -------------------------------------------------------------------------------- /AVAEMixerSample.xcodeproj/xcuserdata/dev.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample.xcodeproj/xcuserdata/dev.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AVAEMixerSample/AVAE.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AVAE.storyboard -------------------------------------------------------------------------------- /AVAEMixerSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AppDelegate.h -------------------------------------------------------------------------------- /AVAEMixerSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AppDelegate.m -------------------------------------------------------------------------------- /AVAEMixerSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AppDelegate.swift -------------------------------------------------------------------------------- /AVAEMixerSample/AudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioEngine.h -------------------------------------------------------------------------------- /AVAEMixerSample/AudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioEngine.m -------------------------------------------------------------------------------- /AVAEMixerSample/AudioEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioEngine.swift -------------------------------------------------------------------------------- /AVAEMixerSample/AudioEngineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioEngineViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/AudioEngineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioEngineViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/AudioEngineViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioEngineViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/AudioViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/AudioViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/AudioViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/AudioViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/CAAVAudioUnitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAAVAudioUnitView.h -------------------------------------------------------------------------------- /AVAEMixerSample/CAAVAudioUnitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAAVAudioUnitView.m -------------------------------------------------------------------------------- /AVAEMixerSample/CAAVAudioUnitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAAVAudioUnitView.swift -------------------------------------------------------------------------------- /AVAEMixerSample/CAAVParameterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAAVParameterView.h -------------------------------------------------------------------------------- /AVAEMixerSample/CAAVParameterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAAVParameterView.m -------------------------------------------------------------------------------- /AVAEMixerSample/CAAVParameterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAAVParameterView.swift -------------------------------------------------------------------------------- /AVAEMixerSample/CAUITransportButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAUITransportButton.h -------------------------------------------------------------------------------- /AVAEMixerSample/CAUITransportButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAUITransportButton.m -------------------------------------------------------------------------------- /AVAEMixerSample/CAUITransportButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/CAUITransportButton.swift -------------------------------------------------------------------------------- /AVAEMixerSample/DistortionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/DistortionViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/DistortionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/DistortionViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/DistortionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/DistortionViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-568h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-568h.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad-No-Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad-No-Status.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad-No-Status@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad-No-Status@2x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPad@2x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPhone-6-Plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Landscape~iPhone-6-Plus@3x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad-No-Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad-No-Status.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad-No-Status@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad-No-Status@2x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPad@2x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPhone-6-Plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPhone-6-Plus@3x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPhone-6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default-Portrait~iPhone-6@3x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /AVAEMixerSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/Info.plist -------------------------------------------------------------------------------- /AVAEMixerSample/InstrumentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/InstrumentViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/InstrumentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/InstrumentViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/InstrumentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/InstrumentViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AVAEMixerSample/MixerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/MixerViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/MixerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/MixerViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/MixerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/MixerViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/PlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/PlayerViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/PlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/PlayerViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/PlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/PlayerViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/ReverbViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/ReverbViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/ReverbViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/ReverbViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/ReverbViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/ReverbViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/SequencerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/SequencerViewController.h -------------------------------------------------------------------------------- /AVAEMixerSample/SequencerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/SequencerViewController.m -------------------------------------------------------------------------------- /AVAEMixerSample/SequencerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/SequencerViewController.swift -------------------------------------------------------------------------------- /AVAEMixerSample/bluesyRiff.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/bluesyRiff.mid -------------------------------------------------------------------------------- /AVAEMixerSample/drumLoop.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/drumLoop.caf -------------------------------------------------------------------------------- /AVAEMixerSample/gs_instruments.dls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/gs_instruments.dls -------------------------------------------------------------------------------- /AVAEMixerSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/main.m -------------------------------------------------------------------------------- /AVAEMixerSample/marimbaLoop.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/AVAEMixerSample/marimbaLoop.caf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/README.md -------------------------------------------------------------------------------- /README2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooper-shlab/AVAEMixerSample-Swift/HEAD/README2.md --------------------------------------------------------------------------------