func start(){         let url = URL(string: "https://isebi.net/albums.php")                              let task = URLSession.shared.dataTask(with: url!, completionHandler: {(data, response, error) in                 if let error = error {                     print(error)                 }                                  if let data = data{                     print("data =\(data)")                 }                 if let response = response {                     let httpResponse = response as! HTTPURLResponse                                          if httpResponse.statusCode == 200{                         do {                             let json = try JSONSerialization.jsonObject(with: data!, options: .allowFragments) as! NSArray //                                                          for jsonObj2 in json{                                 //if((jsonObj as? NSNull) == nil){                                 if( jsonObj2 is NSNull) {                                     continue;                                 }                                 let jsonObj = jsonObj2 as! NSDictionary;                                 let cd = CD();                                 if ( jsonObj["artist"] is NSNull ) {                                    continue;                                 }                                 if ( jsonObj["tracks"] is NSNull ) {                                     continue;                                 }                                 if ( jsonObj["album"] is NSNull ) {                                     continue;                                 }                                 if ( jsonObj["genre"] is NSNull ) {                                     continue;                                 }                                 if ( jsonObj["year"] is NSNull ) {                                     continue;                                 }                                                                                                   let artist = jsonObj["artist"] as! String;                                 let tracks = jsonObj["tracks"] as! Int;                                 let album = jsonObj["album"] as! String;                                 let year = jsonObj["year"] as! Int;                                 let genre = jsonObj["genre"] as! String;                                 cd.Artist = artist;                                 cd.Genre = genre;                                 cd.Title = album;                                 cd.Year = year;                                 cd.Tracks = tracks;                                 self.CDArray.append(cd);                                 print(jsonObj);                                 //}                             }                                                          DispatchQueue.main.async {                                 self.buttons();                                 self.updateView();                             }                         } catch let error as NSError {                             print(error)                         }                                              } else {                         print("NO");                     }                 }             })             task.resume()              }