Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用该BaseType属性,我可以使用该Name属性来更改要绑定到的实际objective-c 类的名称。这有助于保持命名约定一致。但是,使用该Model属性的协议呢?没有Name要设置的属性。
BaseType
Name
Model
在这种情况下也只需使用 BaseType :
[BaseType (typeof (NSObject), Name="MyOtherName")] [Model] public interface MyDelegate { }