gpt4 book ai didi

来自 NSAttributedString 的 Xamarin NSTextStorage

转载 作者:行者123 更新时间:2023-12-02 20:24:35 24 4
gpt4 key购买 nike

我尝试将此行移植到 xamarin

let textStorage = NSTextStorage(attributedString: self.attributedText!)

但我找不到采用 NSAttributedString 的构造函数或静态方法。

最佳答案

NSTextStorageattributedString: Xamarin.iOS 上缺少初始化程序.

您可以执行Append | Insert在您的NSTextStorage上对象(实际上是在 NSMutableAttributedString 子类上附加/插入)。

由于您的 NSTextStorage 在刚刚实例化时将为空,因此只需使用 Append :

var textStorage = new NSTextStorage();
textStorage.Append(someMutableAttributedString);

注意:此初始值设定项已手动添加到 Xamarin.MacAppKit框架作为分部类(API 生成器中的某些内容必须与它的定义方式不同)。

关于来自 NSAttributedString 的 Xamarin NSTextStorage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50343925/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com