0
試圖港口一些目標C代碼到C# 頭文件包含MonoTouch的NSTextStorage實現我如何
@interface MyStorage : NSTextStorage
@end
和實施是一樣的東西
#import "MyStorage .h"
@interface MyStorage()
@property (nonatomic,strong) NSMutableAttributedString *myAttrString;
- (id)init
{
if (self = [super init]) {
_myAttrString= [NSMutableAttributedString new];
}
return self;
}
- (NSString *)string
{
return [_myAttrString string];
}
,但我不明白的
- (NSString *)string
{
return [_myAttrString string];
}
部分。這是一個抽象的屬性或類似的東西,但我不知道如何在C#上覆蓋它,有人知道這是什麼嗎?