Axel Le Pennec
Axel Le Pennec
Hello, I tried to use this solution in a demo application. It works fine when I put the app in background, but as soon as I lock the device, I...
A lot of formatters now have an equivalent FormatStyle: https://developer.apple.com/documentation/foundation/formatstyle But there is no build-in FormatStyle for CNPostalAddressFormatter https://developer.apple.com/documentation/contacts/cnpostaladdressformatter. Would this make sense to add such a FormatStyle to easily...
Currently, [UnitSpeed](https://developer.apple.com/documentation/foundation/unitspeed) offers the following units: milesPerHour, kilometersPerHour, metersPerSecond and knots. What do you think about adding [Beaufort](https://www.weather.gov/mfl/beaufort) to this list of supported units? It's a widely used unit for...
I've defined a custom Dimension to represent the pace. ``` public final class UnitPace: Dimension { public static let secondsPerMeter = UnitPace( symbol: "s/m", converter: UnitConverterLinear(coefficient: 1) ) } extension...
Feedback: [FB13462533](https://feedbackassistant.apple.com/feedback/13462533) Post on Swift Forums: https://forums.swift.org/t/calendar-nextdate-enumeratedates-provides-wrong-dates/68943 --- In my app, I need to get previous dates that matches specific months in the year (think of it like recurring events,...
Hello, I'm using the paywallFooter ViewModifier in my SwiftUI app. I want to track some analytics regarding the package being purchased. As of today, we don't have access to this...
Hello, I’m trying to understand how the files we use in our projects are being generated from the time zone boundaries shape files. I’m curious in case we need to...
I'm curious to know why iOS 17 is not available. Would it be possible to add this version too? Thanks!
**Describe the bug** I try to sign in with my email address and password. **To Reproduce** Steps to reproduce the behavior: try to sign in within the app (Settings) **Expected...
Hello, I noticed that Mixpanel supports [Objects and List of Objects](https://docs.mixpanel.com/docs/data-structure/property-reference/data-type#object). Are there any plans to add support for these types to the `MixpanelType` in the Swift SDK? Thanks, Axel