转到另一个目标Xcode的项目?

时间:2018-02-20 10:09:28

标签: ios xcode appdelegate workspace

我在Xcode工作区有两个项目。 我们称他们为项目A和项目B. 在项目A的某些部分,我想加载整个项目B

我在项目A的适当位置使用此代码来调用项目B的secondappdelegate以加载第二个项目:

#import “SecondAppDelegate.h"

//and use


_appDelegate =( SecondAppDelegate* )[UIApplication sharedApplication].delegate;


_mainTabsController = [[TGMainTabsController alloc] initWithPresentation:_presentation];
        [_mainTabsController setViewControllers:[NSArray arrayWithObjects:_contactsController, _callsController, _dialogListController,_appDelegate ,_accountSettingsController, nil]];

但_appDelegate为nil且应用程序崩溃

0 个答案:

没有答案