gpt4 book ai didi

ios - NSMutableAttributedString 初始化期间代码崩溃

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:18:18 33 4
gpt4 key购买 nike

我需要用字符串 productDesc 初始化 NsmutableAttributedString,但是代码崩溃

 attrStrInfoLabel= [[NSMutableAttributedString alloc] initWithString:productDesc]; 

错误 [NSConcreteMutableAttributedString _encodingCantBeStoredInEightBitCFString]

请告知我的代码是

NSMutableAttributedString  *attrStrInfoLabel;
NSMutableString *productDesc;
productDesc = [NSMutableString stringWithFormat:@"PRODUCT DESCRIPTION:%@", [productDescription objectAtIndex:i]];
attrStrInfoLabel= [[NSMutableAttributedString alloc] initWithString:productDesc];

最佳答案

尝试使用 NSAttributedString 而不是 NSMutableString。看看下面的代码示例。

 NSMutableAttributedString *attrStrInfoLabel = [[NSMutableAttributedString alloc] init];
NSAttributedString *productDesc = [[NSAttributedString alloc] initWithString:[NSMutableString stringWithFormat:@"PRODUCT DESCRIPTION:%@",[productDescription objectAtIndex:i]];
[attrStrInfoLabel appendAttributedString:productDesc];

同时检查 productDescription 中的数据。检查一下是否为 !nil 并且计数>0。

关于ios - NSMutableAttributedString 初始化期间代码崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23359067/

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