gpt4 book ai didi

iphone - 错误 : "-[NSCFString sizeWithTextStyle:]: unrecognized selector" in IPhone SDK

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:44:01 37 4
gpt4 key购买 nike

我在运行我的应用程序时遇到以下错误。

'-[NSCFString sizeWithTextStyle:]: 无法识别的选择器

我没有在我的整个项目中使用 sizeWithTextStyle。

那么哪里出了问题呢?

我在下面的return pos;语句中出错

代码:

(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *pos = [[UIView alloc] initWithFrame:CGRectMake(0.0,0.0,320.0,35.0)];
return pos;
}

控制台错误:

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

由于整个崩溃日志的缩进问题,我把崩溃日志的截图放在这里

enter image description here

最佳答案

我认为,问题出在其他地方,而不是在这行代码中。该对象无法保留自身。发布代码,在您使用 sizeWithTextStyle 方法的地方

您的链接设置中有 -all_load 标志吗?

这个问题经常出现。 您需要将 -all_load 和 -ObjC 添加到您的应用程序链接标志中。

*编辑:*

在线似乎发生崩溃:

 CGSize textSize = [self.text sizeWithTextStyle:textStyle];
in class: CPTextLayer method: sizeToFit

which is called from within class CPTextLayer method initWithText:
-(id)initWithText:(NSString *)newText style:(CPTextStyle *)newStyle
....
[self sizeToFit];


**try to set with iOS 4 and not with 3.1.3 **

关于iphone - 错误 : "-[NSCFString sizeWithTextStyle:]: unrecognized selector" in IPhone SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21607403/

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