最初我在 LoginViewController.m 中有包含以下警告的文件,我忽略了它。并且代码工作正常。
warning: sending 'LoginViewController *' to parameter of incompatible type 'id<NSStreamDelegate>'
但现在我将文件扩展名更改为 .mm (LoginViewController.mm)。由于此错误,现在我无法再构建项目。
Cannot initialize a parameter of type 'id<NSStreamDelegate>' with an lvalue of type 'LoginViewController *'
怎么了?