Как я могу дать эффект затухания загруженным контактам? Пины - это системные отметки местоположений, то есть маркеры на карте. Это блок кода, в котором я должен поместить этот эффект. Пины загружаются через "SCS.earthquakes (self)"
override func viewWillAppear(_ animated: Bool)
{
super.viewWillAppear(animated)
if removeSeismometers == false // It also loads the pins of the seismometers
{
SCS.seismometers(self) // Place the seismometers on the map, but SCS.seismometers (self) is called a second later by the timer (in this way it does not put them when it changes the page and returns to the map)
}
mapTimer = Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(MapViewController.refreshPins), userInfo: nil, repeats: true)
SCS.earthquakes(self) // Place earthquakes on the map
}