private var ads: [AdInfo] = AdInfo.allAds
the other part to that is :
struct AdInfo: Codable {
var aid, bname, bcity: String?
var bstate: Bstate?
var distance: String?
var cangap: String?
var vip: Int?
var photo: [String: String]?
var adsTitle, adsMsg, status: String?
var urgentAdsHTML: [AdInfo]?
enum CodingKeys: String, CodingKey {
case aid, bname, bcity, bstate, distance, cangap, vip, photo
case adsTitle = "ads_title"
case adsMsg = "ads_msg"
case status, urgentAdsHTML
}
static let allAds: [AdInfo] = Bundle.main.decode(file: "sanantoniotx.json")
static let sampleAd: AdInfo = allAds[0]
}