The Certification Authority (CA) for Apple Push Notification service (APNs) is changing. APNs will update the server certificates in sandbox on January 20, 2025, and in production on February 24, 2025. All developers using APNs will need to update their application’s Trust Store to include the new server certificate: SHA-2 Root : USERTrust RSA Certification Authority certificate. To ensure […]
Looking around the App Store, it's clear that we're not charging enough. This episode of Under the Radar is sponsored by: Listen Later: A read-it-later service for your ears. Links and Show Notes: Support Under the Radar with a Relay FM Membership Source link
Working at a large company like Apple or Google is such a common goal in the tech industry that there’s even a market for selling courses and books designed to help people achieve this goal. But one thing that I’ve learned in my career is that working at such companies is not for everyone. The […]
Get your app up to speed, meet the team behind Lies of P, explore new student resources, and more. Read the full article Source link
Lies of P is closer to its surprising source material than you might think. Based on Carlo Collodi’s 1883 novel The Adventures of Pinocchio, the Apple Design Award-winning game is a macabre reimagining of the story of a puppet who longs to be a real boy. Collodi’s story is still best known as a children’s […]
We’re thrilled to announce the Swift Student Challenge 2025. The Challenge provides the next generation of student developers the opportunity to showcase their creativity and coding skills by building app playgrounds with Swift. Applications for the next Challenge will open in February 2025 for three weeks. We’ll select 350 Swift Student Challenge winners whose submissions demonstrate excellence […]
Swift’s foundation library provides a sorted(by:) function for sorting arrays. The areInIncreasingOrder closure needs to return true if the closure’s arguments are increasing, false otherwise. How to use the closure for sorting by multiple criteria? Let’s take a look at an example of sorting an array of Player structs. Sort by score in descending order […]
#302: Artificial Walls September 26th, 2024 · 29 minutes Holding the line for our own standards, while being open to the possibility that we’ve chosen the wrong lines. This episode of Under the Radar is sponsored by: September is Childhood Cancer Awareness Month and the Relay community are coming together once again to support the […]
Apple is committed to making the App Store a safe place for everyone — especially kids. Within the next few months, the following regional age ratings for Australia and France will be implemented in accordance with local laws. No action is needed on your part. Where required by local regulations, regional ratings will appear alongside Apple […]
DateFormatter is used for converting string representation of date and time to a Date type and visa-versa. Something to be aware of is that the conversion loses microseconds precision. This is extremely important if we use these Date values for sorting and therefore ending up with incorrect order. Let’s consider an iOS app which uses […]