You may want to show a list of the upcoming application notifications, you can do this by using the following code.
iOS Notifications While App is Open
You first need a class that acts as the delegate for the userNotificationCenter. Then you need to create an instance of this on your @main, and then tell the notification center what the delegate is.
iOS Notifications
Below is code for creating a notification locally on iOS, and triggering it 5 seconds later. Don’t forget to request permissions to send notifications.
StoreKit2 With XCode
When testing StoreKit connected directly to XCode, you need to have your .storekit file open and then use the debug menu to test purchases. This is the first time I realized that the menus changed what they have in them dependent on what file you have open. This also means […]
Bowling Score Tracker
My girlfriend is part of a bowling league and every week she writes her scores down on a piece of paper. After seeing her do this for many seasons of bowling I’ve decided I would build her a simple mobile application that she can enter these scores into. If you […]
When sharing data between targets using UserDefaults
When you have to use UserDefaults to share data between a core app and a widget you have to do a couple of things. Inside of the project Signing & Capabilities use the Add Capabilities button to add App Group. You need to do this while selecting both the app […]
Advanced SwiftUI Stepper
Apple’s built in stepper allows you to only have one step increment value, I’ve designed on that allows for two different increment values. Initial version supported 1 and 10 for the step values and is tied to an integer. This of course is the first revision, and it isn’t very […]
Swift Temperature Format Customization
When you use Measurement format function in Swift it will always format the temperature to the format of the locale of the device. This is not the experience I wanted in my application. I wanted to provide the user an option to chose which scale they wanted to use, so […]
Slide Out Menu for iOS using SwiftUI
This week I’ve been working on prototyping a slide out menu, or as most people know it as the hamburger menu. This is a very useful navigation system for apps once the scale past 5 “systems” or tabs. This system has to wrap the main content view inside of a […]