We are creating an app using Xcode 6 beta 5 + Swift on iOS 8 SDK. We\'d like to deploy to iOS 7 as well. Is that possible? When we set the deployment target of the project t
If you need to support iOS7, you cannot use WebKit2 (WK*) classes, or you need to implement twice the logic, once for iOS8 using WK* and once using UIWeb*, and at runtime choose according to the operating system version.