- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
在 objective-C 中我能够使用:
CGSize stringsize =
[strLocalTelefone sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14.0f]}];
但在 Swift 语言中我没有找到任何解决这种情况的方法。
有什么帮助吗?
最佳答案
我做的是这样的:
let myString = "Some text is just here..."
let size: CGSize = myString.size(withAttributes: [.font: UIFont.systemFont(ofSize: 14)])
let myString = "Some text is just here..."
let size: CGSize = myString.size(withAttributes: [NSAttributedStringKey.font: UIFont.systemFont(ofSize: 14)])
var originalString: String = "Some text is just here..."
let myString: NSString = originalString as NSString
let size: CGSize = myString.size(attributes: [NSFontAttributeName: UIFont.systemFont(ofSize: 14.0)])
var originalString: String = "Some text is just here..."
let myString: NSString = originalString as NSString
let size: CGSize = myString.sizeWithAttributes([NSFontAttributeName: UIFont.systemFontOfSize(14.0)])
关于ios - Swift 中的 CGSize sizeWithAttributes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24141610/
这个问题在这里已经有了答案: Crash in iOS 7.0.3 for NSMutableAttributedString [duplicate] (1 个回答) 关闭 9 年前。 我的字典的一
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-top
我正在尝试计算 uitableview 单元格中文本标签的高度。在看到 sizewithfont 在 ios 7 中被弃用后,我实现了 sizewithattributes,但返回值远小于标签所包含的
好的,我正在使用 sizeWithFont: constrainedToSize 功能,但我收到了编译器警告。我读到我需要改用 sizeWithAttributes(链接在这里:Replacement
我正在使用 NSString 的 sizeWithAttributes 方法来获取 NSString 的动态高度。 我的字符串是@"This is address line1\n This is ad
iOS 7 使用 NSString::sizeWithAttributes 计算给定 NSDictionary 属性的 NSString 边界框的大小。但是,我找不到列出可在该 NSDictionar
如何获得 NSString 的大小,就好像它在 NSRect 中绘制一样。问题是当我尝试 -[NSString sizeWithAttributes:] 时,它返回一个 NSSize ,就好像它具有无
一些背景知识:我正在编写一个应用程序,其中包含一个 slider 来更改整个应用程序中使用的字体大小。当用户滑动 slider 时,用户会看到应用程序的字体实时变大和变小。我的很多 UI 都依赖于 N
在 iOS 7 中 sizeWithFont: 已弃用。建议的替换方法是 sizeWithAttributes: 但是当我将方法从 sizeWithFont: 更改为 sizeWithAttribut
这个问题在这里已经有了答案: iOS 7 sizeWithAttributes: replacement for sizeWithFont:constrainedToSize (9 个回答) 关闭
为了计算 UITextView 的 intrinsicContentSize,我想知道如何获取属性字符串的所有属性,以便将它们传递给 >-[NSString sizeWithAttributes:]?
我正在尝试使用 sizewithattributes 方法计算 uitableview 中 uilabels 的正确高度。但是它返回的高度远低于应有的高度,标签文本被截断并且从 textwithatt
在 objective-C 中我能够使用: CGSize stringsize = [strLocalTelefone sizeWithAttributes:@{NSFontAttr
我有一个 UISlider 可以更改 UITextView 的字体大小。在更改字体大小之前,我想检查一下 UITextView 的高度是否低于其 View 容器的高度。问题是 sizeToFit 和
我有一个从 NSDictionary 返回的 NSValue。 NSValue 是使用 sizeWithAttributes 创建的。我想知道如何将 NSValue 恢复为我可以使用它来创建标签大小的
这个问题在这里已经有了答案: Xcode 6.1 Attribute Dictionaries in Swift (1 个回答) 关闭 8 年前。 我的代码在 iOS 8.0 上运行正常,自从我更新
下面这段代码在 Xcode 6 beta 5 中运行良好: func fitText(){ let size = (self.text as NSString).sizeWithAttribu
我正在开发一款 Mac 应用程序,可以让用户放大内容。我需要测量我呈现的文本的大小。当我缩放字体以进行缩放时,字体的点大小非常小(即 0.001)。当我使用 [NSString sizeWithAtt
如何获得CGSize NSString 的值在 iOS 7 SDK 中,只需将以下代码行转换为 sizeWithAttributes . CGSize size = [text sizeWithFon
如何从新的 iOS 7 方法 sizeWithAttributes 返回多行文本 CGSize? 我希望它产生与 sizeWithFont:constrainedToSize 相同的结果。 NSStr
我是一名优秀的程序员,十分优秀!