Swift 3 How to manage different delegates for different Targets
问题 We have created two Targets (Target_One & Target_Two) for same project. Target_One contain SDK1 and delegate Target1SDKHelperDelegate Target_Two contain SDK2 and delegate Target2SDKHelperDelegate The reason to create two target : we need to upload two apps with same UI but different SDK integration. As we know, each SDK has their own delegates. So we want to apply delegates specific to the target. Example: Target_One has a class named MyClass class MyClass: NSObject, Target1SDKHelperDelegate