Так как Swift поддерживает совпадение mix с объективом c, то мы можем использовать его для построения приложений с целью развертывания меньше, чем iOS 7.
from Быстрая предварительная документация В разделе Basic Setup раздел, который я читаю:
Swift is designed to provide seamless compatibility with Cocoa and Objective-C. You can use Objective-C APIs
(ranging from system frameworksto your own custom code) in Swift, and you can use Swift APIsin Objective-C.
This compatibility makes Swift an easy, convenient, and powerful tool to integrate into your Cocoa app
development workflow.
This guide covers three important aspects of this compatibility that you can use to your advantage when
developing Cocoa apps:
● Interoperability lets you interface between Swift and Objective-C code, allowing you to use Swift classes
in Objective-C and to take advantage of familiar Cocoa classes, patterns, and practices when writing Swift
code.
● Mix and match allows you to create mixed-language apps containing both Swift and Objective-C files that
can communicate with each other.
● Migration from existing Objective-C code to Swift is made easy with interoperability and mix and match,
making it possible to replace parts of your Objective-C apps with the latest Swift features.
Итак, после прочтения этих вопросов, которые возникают у меня в голове,
- Можно ли быстро использовать приложения, которые мы сейчас работаем? на.
- Если ответ отрицательный, это будет противоречить вышеприведенному Объяснение.