NSString sizeWithFont:forWidth:lineBreakMode: 方法的文档(在 iPhone SDK 中)?
我找不到 NSString sizeWithFont:forWidth:lineBreakMode: 方法的文档(请参阅 Kevin Ballard 的回答到“调整 UILabel 的大小(在 iPhone SDK 中)以适合? ”)位于 iPhone SDK 开发人员文档中的 NSString 类参考中。 我应该去哪里看?
更新:我没有订阅 iPhone OS 库文档集,因此我的搜索不起作用。
I can't find the documentation for the NSString sizeWithFont:forWidth:lineBreakMode: method (see Kevin Ballard's answer to "Sizing a UILabel (in the iPhone SDK) to fit?") in the NSString Class Reference in the iPhone SDK Developer Documentation. Where should I look?
Update: I hadn't subscribed to an iPhone OS Library doc set, so my search didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 XCode 中,查找
sizeWithFont:forWidth:lineBreakMode:
。 确保您已选择/可用 iPhone 文档集。它也是 此处(如果您已登录开发者帐户)。
In XCode, look for
sizeWithFont:forWidth:lineBreakMode:
. Make sure you have the iPhone docset selected/available.It's also here, if you're logged into your developer account.
这已被回答并接受,但还有一条评论:
sizeWithFont:* 方法严格来说并不是 NSString 的一部分。 它们是 UIKit 添加的 NSString 类别。
这可能就是您在订阅 iPhone OS 文档集之前无法进行搜索的原因。
This has been answered and accepted, but just one more comment:
The sizeWithFont:* methods are not strictly part of NSString. They are categories of NSString added by UIKit.
That's probably why your search didn't work before you subscribed to the iPhone OS doc set.