12 lines
234 B
Swift
12 lines
234 B
Swift
//
|
|
// stringADID.swift
|
|
// wallpaper_project
|
|
|
|
|
|
import Foundation
|
|
let strings = ["789b377f3ac4010e", "880a042774979c3c", "83802ca889ba09e6","8e1bc1f22c8d6c9d"]
|
|
|
|
func getRandomString() -> String? {
|
|
return strings.randomElement()
|
|
}
|