Проверка шаблона шины для iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BusUI.Aux.swift 294B

11 months ago
11 months ago
123456789
  1. extension BusUI {
  2. /// Пропускаем лишь значения от UI
  3. ///
  4. /// - Returns: Значение без префиксов "a:"/"u:"
  5. static func onlyUIText(_ s: String) -> String? {
  6. guard s.hasPrefix("u:") else { return nil }
  7. return String(s.dropFirst(2))
  8. }
  9. }