You can see counts of enters to the group in debug description:
OS_dispatch_group: group[0x60000221d950] = { xref = 3, ref = 3,
count = 2, gen = 0, waiters = 0, notifs = 1 }
and extract int value out of it:
let count = dispatchGroup.debugDescription.components(separatedBy: ",").filter({$0.contains("count")}).first?.components(separatedBy: CharacterSet.decimalDigits.inverted).compactMap{Int($0)}.first
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…