This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
static func getOutputDevices() -> [AudioDeviceID: String]? | |
static func isOutputDevice(deviceID: AudioDeviceID) -> Bool | |
static func getAggregateDeviceSubDeviceList(deviceID: AudioDeviceID) -> [AudioDeviceID] | |
static func isAggregateDevice(deviceID: AudioDeviceID) -> Bool | |
static func setDeviceVolume(deviceID: AudioDeviceID, leftChannelLevel: Float, rightChannelLevel: Float) | |
static func setOutputDevice(newDeviceID: AudioDeviceID) | |
static func getDeviceVolume(deviceID: AudioDeviceID) -> [Float] | |
static func getDefaultOutputDevice() -> AudioDeviceID | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//: A UIKit based Playground for presenting user interface | |
import UIKit | |
import PlaygroundSupport | |
class CardView: UICollectionViewCell { | |
override init(frame: CGRect) { | |
super.init(frame: frame) | |
setupView() |