如何在Swift中正确初始化Fabric

时间:2016-03-01 12:44:52

标签: ios swift twitter-fabric

文档中显示了两种不同的初始化方法:

A)来自here

Fabric.with([Crashlytics.self(), Answers.self()])

B)来自here

Fabric.with([Crashlytics.self, Answers.self])

C)这也不会让编译器抱怨

Fabric.with([Crashlytics.self, Answers.self()])

D)无处不在

Fabric.with([Crashlytics(), Answers()])

据我所知,A和D是完全相同的。但是B得到一个Type数组。哪一个是正确的?如果它们没有区别,它是如何工作的?

0 个答案:

没有答案