gpt4 book ai didi

iphone - 在循环中使用CTFontRef创建NSMutableAttributedString时出现问题

转载 作者:行者123 更新时间:2023-12-03 16:16:47 25 4
gpt4 key购买 nike

我需要为该字符串中的不同范围使用不同的CTFontRef和CTParagraphStyleRef创建一个NSMutableAttributedString。

我尝试通过将以下代码放入循环并根据需要更改范围来创建它,

CTFontRef normalFontRef = CTFontCreateWithName((CFStringRef)@"CourierNewPSMT", fontsize, NULL);
NSDictionary* normalFontAttribute = [[NSDictionary alloc] initWithObjectsAndKeys:(id)normalFontRef,(NSString*)kCTFontAttributeName, nil];
[attributedString addAttributes:normalFontAttribute range:range];

CFRelease(normalFontRef);
[normalFontAttribute release];
normalFontAttribute = nil;

CTParagraphStyleRef paragraphStyle = CTParagraphStyleCreate(theSettings, theNumberOfSettings);
NSDictionary* paragraphAttribute = [[NSDictionary alloc] initWithObjectsAndKeys:(id)paragraphStyle,(NSString*)kCTParagraphStyleAttributeName, nil];
[attributedString addAttributes:paragraphAttribute range:range];

CFRelease(paragraphStyle);
paragraphAttribute release];
paragraphAttribute = nil;

我的问题是:

循环迭代后,该应用程序在设备中崩溃,但未显示任何详细信息。
只需关闭该应用程序,无崩溃报告,控制台中无消息,无gdb断点。

更多说明:
我在另一个循环中将此NSMutableAttributedString创建方法称为其他方法,该循环是崩溃的循环,而不是NSMutableAttributedString创建循环。但是,如果我评论了调用上述方法并使用创建NSMutableAttributedString的方法,则效果很好,请参见下文
//works fine
attributtedString = [[NSMutableAttributedString alloc] initWithString:stringContent];

//not working
attributtedString = [self createattributtedString:stringContent];
//this createattributtedString: method contain the first listed code

提前致谢,

最佳答案

您可能会陷入无尽的循环。

关于iphone - 在循环中使用CTFontRef创建NSMutableAttributedString时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6345780/

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