解决方法
Naming Your Product Module
The name of the Xcode-generated header for Swift code,and the name of
the Objective-C bridging header that Xcode creates for you,are
generated from your product module name. By default,your product
module name is the same as your product name. However,if your product
name has any nonalphanumeric characters,such as a period (.),they
are replaced with an underscore (_) in your product module name. If
the name begins with a number,the first number is replaced with an
underscore.You can also provide a custom name for the product module name and
Xcode will use this when naming the bridging and generated headers. To
do this,change the Product Module Name build setting.NOTE
You cannot override the product module name of a framework.
在您的情况下,将NSObject Rx替换为NSObject_Rx,或通过更改“产品模块名称”构建设置来设置您自己的名称.