协作台风程序集导致 "Can't find assembly of type" 信息日志消息

Collaborating Typhoon assemblies results in "Can't find assembly of type" info log message

我在我的应用程序中使用 Typhoon 已有一段时间了。在最近升级到 Typhoon v3.2.8 之后,我在应用程序启动时收到一条新的信息级消息登录到控制台:

2015-09-04 15:27:07.761 MYApp[1348:10138960] -[TyphoonAssembly activateWithFactory:collaborators:][Line 280] [info] * Warning * Can't find assembly of type MYCoreAssembly. Is this intentional? The property 'coreAssembly' in class MYApplicationAssembly will be left as nil.

在我的应用程序中,台风 Info.plist 已激活,有两个协作程序集:MYApplicationAssemblyMYCoreAssembly

我的应用委托有几个 Typhoon 注入的属性,包括 MYApplicationAssembly 实例。 MYApplicationAssembly 实现 "collaborates with" MYCoreAssembly 程序集。相关接口声明为:

@interface MYApplicationAssembly : TyphoonAssembly

@property (nonatomic, readonly) MYCoreAssembly *coreAssembly;

- (MYHomeViewController *)homeViewController;

@end

@interface MYCoreAssembly : TyphoonAssembly

- (id)someCoreThing;

@end

我想弄清楚上面警告消息的根本原因是什么,如果它实际上不是问题(一切继续按预期工作),那么如何消除它。谢谢!

这是一个已知错误。据我们所知,它不会引起任何其他问题,但我们会尽快修复。