let makeCallVC = FFMakeCallViewController(nibName: "FFMakeCallViewController", bundle: Bundle(for: type(of: self)))
Bundle(for: type(of: self)) 指定了从本framework中查找nib,其他与一般开发无异。
let makeCallVC = FFMakeCallViewController(nibName: "FFMakeCallViewController", bundle: Bundle(for: type(of: self)))
Bundle(for: type(of: self)) 指定了从本framework中查找nib,其他与一般开发无异。