annotate GeoQuiz/SettingsModalView-ViewModel.swift @ 28:f51b70c2cccc
randomize country selection
author |
Dennis C. M. <dennis@denniscm.com> |
date |
Thu, 10 Nov 2022 10:12:58 +0100 |
parents |
3f4b366d476d |
children |
9d6dd0e59c22 |
rev |
line source |
27
|
1 //
|
|
2 // SettingsModalView-ViewModel.swift
|
|
3 // GeoQuiz
|
|
4 //
|
|
5 // Created by Dennis Concepción Martín on 9/11/22.
|
|
6 //
|
|
7
|
|
8 import Foundation
|
|
9
|
|
10 extension SettingsModalView {
|
|
11 func getVersion() -> String? {
|
|
12 return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String
|
|
13 }
|
|
14 }
|