I'm working with swift 2.0 and on a project that has the deployment target as 7.0. And when I use
location.requestAlwaysAuthorization()
error is thrown . And I know this particular method isn't there for ios 7. my Question is .. If i add
@available(ios 8.0 , *)
Would it work on devices with ios 7.0 or this particular function would be processed only if the device is >= ios 8.0 ? Kindly help.