I know I can find the version of Swift I\'m running right now reverting to a Terminal and typing:
xcrun swift --version Swift version 1.1 (swift-600.0.57.4)
For iOS :
var systemVersion = UIDevice.currentDevice().systemVersion;
For OSX :
var systemVersion = NSProcessInfo.processInfo().operatingSystemVersion;
K.