问题标签 [sizewithfont]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - 替换已弃用的 -sizeWithFont:constrainedToSize:lineBreakMode: 在 iOS 7 中?
在 iOS 7 中,方法:
和方法:
已弃用。我该如何更换
和:
ios7 - sizeWithFont:minFontSize:actualFontSize:forWidth:lineBreakMode: iOS7 替代
请帮助我找到弃用方法的替代方法...
(boundingRectWithSize:options:attributes:context:) 可以这样做吗?像这样的东西...
我对吗?期待您的建议:)
ios - sizeWithFont is deprecated in iOS7
With the new iOS7 sizeWithFont:constrainedToSize:lineBreakMode
is deprecated and I receive warnings about it in my XCode 5. I have to say that is not affecting the functionality as far as I can tell but I would like to find an alternative to it in order to remove the annoying warnings. Here's my code related to the problem:
and:
I wasn't able to figure it out by myself an solution and I don't know what to use instead.
ios - 如何获取 -[NSString sizeWithAttributes:] 的所有属性
所以我可以计算intrinsicContentSize
a UITextView
,我想知道如何获取属性字符串的所有属性,以便我可以将它们传递给-[NSString sizeWithAttributes:]
?
iphone - sizeWithFont 崩溃及其在 iOS 7 上的替换
我有使用sizeWithFont
方法的应用程序。它在 iOS 7 上大约 5% 的应用程序启动时崩溃。该方法在 SDK 7 上已弃用,因此我将其替换为以下类别:
但是现在我在同样的 5% 的发布中又发生了一次崩溃。有两种类型的崩溃报告:
和这个:
LiteVersionHomepageLink 继承自 UIView:
并mySizeWithFont
从以下方法调用:
怎么了?如何修复崩溃?非常感谢您的帮助!
objective-c - 使用自定义字体获取不正确的 sizeWithFont constrainedToSize 值
我试图获取文本的大小,以便可以扩展 UITextView 的高度。我不希望它有滚动。
因此,我去做了这件事。
然后将我的 UITextView 设置为新的大小。问题是尺寸,我只想要新的高度,太小了。是自定义字体 sizeWithFont 无法正常工作,还是正如我在这篇文章中阅读的那样,边距出现了问题,但我尝试了他的解决方案,得到了完全相同的结果。
有任何想法吗?
谢谢
ios7 - IOS 7 sizeWithFont Deprecated
I cannot seem to replace the deprecated sizeWithFont
with boundingRecWithSize
correctly. I scoured through all the answers and stayed up all night trying to fix this.I really need help from someone way smarter than I. Here is the code I am trying to modify. Any help would be appreciated.
ios - -[NSString sizeWithFont:] 只考虑我传入的字体,不考虑日文字符的后备字体
我将一些字符串传递给-[NSString sizeWithFont:]。这些字符串既有西方字符也有日语字符。
显示这些字符串的唯一方法是使用两种字体:我正在使用的西方字体,以及用作后备的日文字体,因为这些字符不存在于西方字体中。
问题:似乎-[NSString sizeWithFont:] 从来没有考虑过日文字体,只是我传入的西方字体。这使得计算这些字符串的大小充其量是棘手的。
有谁知道如何处理这种情况?
ios - iOS sizeWithFont:constrainedToSize:lineBreakMode 中的空白数是否有限制?
我正在 iPhone 上制作聊天应用程序。我对 sizeWithFont:constrainedToSize:lineBreakMode 函数有疑问。当 NSString 有长长的空白时, sizeWithFont() 总是返回 (width:218, height:18)
这是我的测试代码。
这就是结果。
问题:如何获得正确大小的长空白字符串?
ios7 - sizeWithFont:constrainedToSize - iOS7
我有以下在 iOS6 中使用的方法,但在 iOS7 中出现错误
下面的完整方法,关于如何修改iOS7的任何想法?