gpt4 book ai didi

ios - 将文本写入 CGContext 的奇怪错误

转载 作者:行者123 更新时间:2023-11-28 21:56:16 25 4
gpt4 key购买 nike

我正在尝试使用这段代码将文本写入 CGContext

  NSString *text = NSLocalizedString(@"myText", nil);

NSDictionary *atributes = @{
NSFontAttributeName : @"Helvetica Neue Bold",
NSForegroundColorAttributeName : [UIColor blackColor]
};

[text drawAtPoint:CGPointMake(x1, y2) withAttributes: attributes];

但是我看到了这个错误

由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[__NSCFConstantString pointSize]:无法识别的选择器发送到实例 0x1001dfd40

有什么线索吗?

最佳答案

NSFontAttributeName 设置 UIFont 对象。

NSString *text = NSLocalizedString(@"myText", nil);

NSDictionary *atributes = @{
NSFontAttributeName : [UIFont fontWithName:@"Helvetica Neue Bold" size: 17.0],
NSForegroundColorAttributeName : [UIColor blackColor]
};

[text drawAtPoint:CGPointMake(x1, y2) withAttributes: attributes];

关于ios - 将文本写入 CGContext 的奇怪错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26430360/

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