• Мерцает экран MacBook Pro 13 с тачбаром 2018. Проблему не решили?

    @AlessandroDP
    У меня мерцать начал спустя полтора года, проха 13' 17-го.
    Все больше и больше...
    Сейчас уже и не закрываю, тк придется долго искать угол открытия, чтобы не мерцало. Моргает очень долго, причем, когда по тачпаду водишь, напрочь тухнет. Был уверен, что шлейф, но на скрине пароля все чОтка. Как только залогинишься и понеслась...
    Крышку открываешь на градусов 30 - все ок, больше - сразу сатана кая то...
    Ответ написан
    2 комментария
  • Как отобразить push уведомление, когда приложение активно?

    @AlessandroDP
    The method will be called on the delegate only if the application is in the foreground. If the method is not implemented or the handler is not called in a timely manner then the notification will not be presented. The application can choose to have the notification presented as a sound, badge, alert and/or in the notification list. This decision should be based on whether the information in the notification is otherwise visible to the user.
    - (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler __IOS_AVAILABLE(10.0) __TVOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0) __OSX_AVAILABLE(10.14);

    - (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
    {
        completionHandler(UNNotificationPresentationOptionAlert);
    }
    Ответ написан
    Комментировать