- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在一个标签中,我赋予一个大字符串并设置它的 .lineBreakMode = .buTrucatingTail
,但是当我这样做并尝试在其上使用 VoiceOver 时,我最终读取了整个字符串,而不是只是屏幕上的内容,这里是一个例子:
string.text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
srring.lineBreakMode = .buTrucatingTail
这是屏幕上显示的内容:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco...
但是画外音读出了整个字符串。
有谁知道如何让它停在截断的三个点上?或者如何将辅助功能标签设置为屏幕上的内容(因为文本长度会根据设备而变化)?
提前致谢。
最佳答案
[...] when I do that and try to use VoiceOver on it, I ends up reading the whole string, not just what is in the screen [...] voice over reads the whole string.
正如我在评论中所说,截断只是为了显示。
VoiceOver 将始终读出字符串的整个文本,它不关心屏幕上显示的内容。
它与accessibilityLabel
完全一样,可能与显示的内容不同:这里的accessibilityLabel是整个字符串内容。 🤨
Does anyone know how to make it stop in the truncation three dots?
你的问题引起了我的好奇心,我决定研究这个问题。
我找到了一个使用 TextKit 的解决方案,其基础知识应该是已知的:如果不是这样的话 ⟹ Apple doc 👍
⚠️ 主要思想是确定最后一个可见字符的索引,以便提取显示的子字符串,最后将其分配给accessibilityLabel。 ⚠️
初始假设:使用与问题 (byTruncationTail) 中定义的相同 lineBreakMode
的 UILabel。
我在 Playground 上编写了以下整个代码,并使用 Xcode 空白项目检查了结果。🤓
import Foundation
import UIKit
extension UILabel {
var displayedLines: (number: Int?, lastIndex: Int?) {
guard let text = text else {
return (nil, nil)
}
let attributes: [NSAttributedString.Key: UIFont] = [.font:font]
let attributedString = NSAttributedString(string: text,
attributes: attributes)
//Beginning of the TextKit basics...
let textStorage = NSTextStorage(attributedString: attributedString)
let layoutManager = NSLayoutManager()
textStorage.addLayoutManager(layoutManager)
let textContainerSize = CGSize(width: frame.size.width,
height: CGFloat.greatestFiniteMagnitude)
let textContainer = NSTextContainer(size: textContainerSize)
textContainer.lineFragmentPadding = 0.0 //Crucial to get the most accurate results.
textContainer.lineBreakMode = .byTruncatingTail
layoutManager.addTextContainer(textContainer)
//... --> end of the TextKit basics
var glyphRangeMax = NSRange()
let characterRange = NSMakeRange(0, attributedString.length)
//The 'glyphRangeMax' variable will store the appropriate value thanks to the following method.
layoutManager.glyphRange(forCharacterRange: characterRange,
actualCharacterRange: &glyphRangeMax)
print("line : sentence -> last word")
print("----------------------------")
var truncationRange = NSRange()
var fragmentNumber = ((self.numberOfLines == 0) ? 1 : 0)
var globalHeight: CGFloat = 0.0
//Each line fragment of the layout manager is enumerated until the truncation is found.
layoutManager.enumerateLineFragments(forGlyphRange: glyphRangeMax) { rect, usedRect, textContainer, glyphRange, stop in
globalHeight += rect.size.height
if (self.numberOfLines == 0) {
if (globalHeight > self.frame.size.height) {
print("⚠️ Constraint ⟹ height of the label ⚠️")
stop.pointee = true //Stops the enumeration and returns the results immediately.
}
} else {
if (fragmentNumber == self.numberOfLines) {
print("⚠️ Constraint ⟹ number of lines ⚠️")
stop.pointee = true
}
}
if (stop.pointee.boolValue == false) {
fragmentNumber += 1
truncationRange = NSRange()
layoutManager.characterRange(forGlyphRange: NSMakeRange(glyphRange.location, glyphRange.length),
actualGlyphRange: &truncationRange)
let sentenceInFragment = self.sentenceIn(truncationRange)
let line = (self.numberOfLines == 0) ? (fragmentNumber - 1) : fragmentNumber
print("\(line) : \(sentenceInFragment) -> \(lastWordIn(sentenceInFragment))")
}
}
let lines = ((self.numberOfLines == 0) ? (fragmentNumber - 1) : fragmentNumber)
return (lines, (truncationRange.location + truncationRange.length - 2))
}
//Function to get the sentence of a line fragment
func sentenceIn(_ range: NSRange) -> String {
var extractedString = String()
if let text = self.text {
let indexB = text.index(text.startIndex,
offsetBy:range.location)
let indexF = text.index(text.startIndex,
offsetBy:range.location+range.length)
extractedString = String(text[indexB..<indexF])
}
return extractedString
}
}
//Function to get the last word of the line fragment
func lastWordIn(_ sentence: String) -> String {
var words = sentence.components(separatedBy: " ")
words.removeAll(where: { $0 == "" })
return (words.last == nil) ? "o_O_o" : (words.last)!
}
完成后,我们需要创建标签:
let labelFrame = CGRect(x: 20,
y: 50,
width: 150,
height: 100)
var testLabel = UILabel(frame: labelFrame)
testLabel.text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
...并测试代码:
testLabel.numberOfLines = 3
if let _ = testLabel.text {
let range = NSMakeRange(0,testLabel.displayedLines.lastIndex! + 1)
print("\nNew accessibility label to be implemented ⟹ \"\ (testLabel.sentenceIn(range))\"")
}
playground 的调试区用 3 行显示结果: ...如果想要“尽可能多的行”,我们会得到: 这似乎运作良好。 🥳
将此原理包含到您自己的代码中,您将能够让 VoiceOver 朗读屏幕上显示的标签的截断内容。 🎊🎉
关于ios - SWIFT:让画外音停止阅读截断的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65669752/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!