So this is interesting .. while compiling with Xcode 7 against the iOS9 SDK
I got this:

    systemFontOfSize(_:weight:)' is only available on iOS 8.2 or newer

And a bunch of similar warnings around font APIs.

We never got these with Xcode 6!

But, since our app has set the deployment target to 8.0, it could mean that
Apple will reject us because we are using APIs that are unavailable on 8.0.

So two options:

* We set the deployment target to 8.2 - I think this is reasonable. 8.0
came out 6 months ago. There is no reason for anyone to still be on 8.0 or
8.1.

* We wait and see. It is possible that this wont be caught as an API
violation. Specially since it was not marked as 8.2+ in the headers. (BUt
that could also have been a Swift bug)

* We rewrite this code. Lots more work, will require good testing.

:-/

 S.
_______________________________________________
mobile-firefox-dev mailing list
[email protected]
https://mail.mozilla.org/listinfo/mobile-firefox-dev

Reply via email to