Эффект затухания в месте метки (системный значок iOS) - PullRequest
0 голосов
/ 03 августа 2020

Как я могу дать эффект затухания загруженным контактам? Пины - это системные отметки местоположений, то есть маркеры на карте. Это блок кода, в котором я должен поместить этот эффект. Пины загружаются через "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
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...