Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Swift のドキュメントには、AnyObject が任意のクラス型のインスタンスを表すことができること以外に、これについて具体的に言及しているものはありません。Swift のすべてのクラス型は暗黙的に AnyObject プロトコルを実装していますか?
class C {} // Is this implicitly class C: AnyObject {}? let c = C() let anyC: AnyObject = c // ok