Posts Tagged: Swift

IOS + Swift Swift 5
Swift – create expanding lists
May 9, 2021
0
,
// //  MainView.swift //  MySwiftLearning1 // //  Created by Arifur Rahman Jerin on 4/30/21. // import SwiftUI struct Bookmark: Identifiable {     let id = UUID()     let name: String     let icon: String     var items: [Bookmark]?     // some example websites     static let apple = Bookmark(name: […]
Coding IOS + Swift
IOS + Swift Code: Read Data from Remote Json File
September 6, 2017
0
, ,
My JSON FILE: {"teams":[{ "id": "1", "clubName": "USJF", "isDeleted": "0" }, { "id": "2", "clubName": "Docume", "isDeleted": "0" }, { "id": 3, "clubName": "Chelsea", "isDeleted": 0 }, { "id": 4, "clubName": "Bercelona", "isDeleted": 0 }]} JSON FILE Screenshot: IOS CODE: // // ViewController.swift // HelloJson // // Created by Arifur Rahman Zerin on 9/5/17. // […]