为啥在 boundingRectWithSize 处崩溃此代码?
Posted
技术标签:
【中文标题】为啥在 boundingRectWithSize 处崩溃此代码?【英文标题】:why crash this code at boundingRectWithSize?为什么在 boundingRectWithSize 处崩溃此代码? 【发布时间】:2014-06-16 12:01:26 【问题描述】:- (CGSize)sizeOfLabel:(UILabel *)label withText:(NSString *)text
CGSize maximumLabelSize = CGSizeMake(308,9999);
UIFont *font=[UIFont systemFontOfSize:14];
CGRect textRect = [text boundingRectWithSize:maximumLabelSize options:NSStringDrawingUsesLineFragmentOrigin attributes:@NSFontAttributeName:font context:nil]; // CRASH HERE
return textRect.size;
**the error message is:**
2014-06-16 14:55:07.783 OrgBeac[2931:60b] -[Message boundingRectWithSize:options:attributes:context:]: unrecognized selector sent to instance 0x17557a70
2014-06-16 14:55:07.787 OrgBeac[2931:60b] \*\*\* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Message boundingRectWithSize:options:attributes:context:]: unrecognized selector sent to instance 0x17557a70'
\*\*\* First throw call stack:
(0x2e6f4fd3 0x38f6dccf 0x2e6f8967 0x2e6f7253 0x2e6f84f8 0x575d5 0x579e7 0x31020a2b 0x30fe569f 0x30fe73fd 0x30fe7351 0x30fe6f45 0x56f37 0x2f0e56d1 0x39324cef 0x393222ad 0x39321319 0x2f0e3cb9 0x2f0e3f41 0x2f0e40b7 0x2f0e41b5 0x5674d 0x2f033fc3 0x2f033f07 0x2f033e21 0x2e35b0e7 0x2e359cf7 0x2e628941 0x2e2f16bb 0x2e2f1579 0x2e2f140d 0x2e6c025b 0x2e6bf72b 0x2e6bdf1f 0x2e628f0f 0x2e628cf3 0x33581663 0x30f7416d 0x55283 0x3947aab7)
libc++abi.dylib: terminating with uncaught exception of type NSException
【问题讨论】:
它适用于我制作的快速测试应用程序。检查您作为文本传入的内容。看起来它可能不是 NSString。 您传递的是Message
而不是 UILabel
对象。
谢谢,这是问题
【参考方案1】:
您传入的对象text
必须是NSString
,但它是Message
对象。
我猜无论你在哪里打电话,你都在做类似的事情......
[someObject sizeOfLabel:myLabel withText:message];
其实你的意思是……
[someObject sizeOfLabel:myLabel withText:message.text];
【讨论】:
以上是关于为啥在 boundingRectWithSize 处崩溃此代码?的主要内容,如果未能解决你的问题,请参考以下文章
boundingRectWithSize 有时会返回大约 1 行高的高度
调用 NSAttributedString.boundingRectWithSize 时应用程序崩溃
在 boundingRectWithSize:options:context: 中使用 NSStringDrawingUsesLineFragmentOrigin: 获得额外的空白空间
ios7 - boundingRectWithSize:boundingSize 不返回所需的标签高度