在 Swift 3 中获取 GCD 标签
Posted
技术标签:
【中文标题】在 Swift 3 中获取 GCD 标签【英文标题】:Get GCD label in Swift 3 【发布时间】:2016-10-21 23:47:09 【问题描述】:我有一些代码可以获取当前 GCD 队列的标签,用于记录目的,在 Swift 2 中如下所示:
if let queueName
= String(UTF8String: dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL)) where !queueName.isEmpty
detailedMessage += "[" + queueName + "] "
在 Xcode 8 将其转换为 Swift 3 后,它看起来像这样:
if let queueName
= String(validatingUTF8: DISPATCH_CURRENT_QUEUE_LABEL.label), !queueName.IsEmpty
detailedMessage += "[" + queueName + "] "
但是 Xcode 在我构建时给了我以下错误:
元组类型“()”的值没有成员“标签”
我还没有找到任何方法来获取 Swift 3 中的当前队列标签。有人可以帮忙吗?
谢谢,大卫
更新 这是上下文的函数:
public func log(_ message: String,
tag: String,
level: Logger.LogLevel,
userInfo: [String : String]?,
functionName: StaticString,
fileName: StaticString,
lineNumber: Int)
var detailedMessage = ""
let formattedDate = self._dateFormatter.string(from: Date())
detailedMessage += "\(formattedDate) "
detailedMessage += "[\(level.description)] "
if Thread.isMainThread
detailedMessage += "[main] "
else
if let threadName = Thread.current.name , !threadName.isEmpty
detailedMessage += "[" + threadName + "] "
else if let queueName
= String(validatingUTF8: DISPATCH_CURRENT_QUEUE_LABEL.label) , !queueName.isEmpty
detailedMessage += "[" + queueName + "] "
else
detailedMessage += "[" + String(format:"%p", Thread.current) + "] "
let lastPathComponent = NSString(stringLiteral: fileName).lastPathComponent
detailedMessage += "[" + lastPathComponent + ":" + String(lineNumber) + "] "
detailedMessage += "\(functionName) "
let fullMessage = self.messageWithTag(tag, message: message)
detailedMessage += "> \(fullMessage)"
NSLog("\(fullMessage)")
【问题讨论】:
鉴于DISPATCH_CURRENT_QUEUE_LABEL
是NULL
,看来您可以使用String(validatingUTF8: __dispatch_queue_get_label(nil))
。但这让我大吃一惊。
@Rob 谢谢。这行得通,但我同意你的看法。如果结果证明这是一个私有 API,那么当我们尝试提交我们的应用时,我们可能会不高兴。
由于dispatch_queue_get_label
和DISPATCH_CURRENT_QUEUE_LABEL
都已记录在案,这可能只是Apple 的疏忽。您应该在bugreport.apple.com 提交错误。
【参考方案1】:
你可以使用那个方法
let cName = __dispatch_queue_get_label(nil)
let name = String(cString: cName, encoding: .utf8)
【讨论】:
以上是关于在 Swift 3 中获取 GCD 标签的主要内容,如果未能解决你的问题,请参考以下文章
IOS swift如何在标签点击时在TableView中获取标签文本
使用标识符/标签 (SWIFT) 从 UIView 获取 UITextField