7 lines
307 B
Swift
7 lines
307 B
Swift
extension UIAlertController {
|
|
static func unknownCurrentPosition() -> UIAlertController {
|
|
let alert = UIAlertController(title: L("unknown_current_position"), message: nil, preferredStyle: .alert)
|
|
alert.addAction(UIAlertAction(title: L("ok"), style: .default, handler: nil))
|
|
return alert
|
|
}
|
|
}
|