es.davy.ai

Preguntas y respuestas de programación confiables

¿Tienes una pregunta?

Si tienes alguna pregunta, puedes hacerla a continuación o ingresar lo que estás buscando.

Tag: MACOS-MONTEREY

¿Cómo puedo agregar la opción “Reproducir sonidos para notificaciones” para mi aplicación en la configuración de “Notificaciones & Enfoque” de macOS?

Mi aplicación maneja correctamente las notificaciones con los siguientes bloques de código: swift UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound]) { _, _ in } y: swift func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { return completionHandler([.alert, .sound]) } y: UNUserNotificationCenter.current().getNotificationSettings { (settings) in if settings.authorizationStatus == .authorized . . . Read more

¿Cómo resolver el mensaje de advertencia del organizador de App Store Connect “Su versión de iTMSTransporter se actualizará en aproximadamente … días”?

He subido una compilación a través del organizador de xCode y muestra el error “Su versión de iTMSTransporter se actualizará en aproximadamente … días”. Como muestra, cargué el archivo con advertencias aunque no estaba disponible en App Store Connect TestFlight después de un tiempo. Y no recibí ningún correo electrónico . . . Read more

No se puede ejecutar latexindent en macOS Monterey 12.0.1.

Necesito poder ejecutar el comando latexindent, pero obtengo este error cada vez: Unknown PerlIO layer ‘encoding’ at /usr/local/texlive/2021/texmf-dist/scripts/latexindent/LatexIndent/Document.pm line 21. Unknown PerlIO layer “encoding” at /opt/homebrew/Cellar/perl/5.34.0/lib/perl5/5.34.0/open.pm line 126. Unknown PerlIO layer “encoding” at /opt/homebrew/Cellar/perl/5.34.0/lib/perl5/5.34.0/open.pm line 134. Unknown PerlIO layer “encoding” at /opt/homebrew/Cellar/perl/5.34.0/lib/perl5/5.34.0/open.pm line 135. Attempt to reload PerlIO/encoding.pm aborted. Compilation . . . Read more