我正在使用通过cocoapods安装的框架,并在头文件中发现了这种奇怪的行为。
这是swift(转换)文件的样子:
/**
* The title of the note.
*/
public var title: String!
/**
* The content of the note.
*/
它缺少内容属性。如果我打开"导航 - >跳转到原始来源"我看到这个属性确实存在于原始的objective-c标题中:
/**
* The title of the note.
*/
@property (nonatomic, copy) NSString * title;
/**
* The content of the note.
*/
@property (nonatomic, strong) ENNoteContent * content;
任何想法如何发生这种情况?