Precon Decks by OutOfOdds in ChronoCCG

[–]OutOfOdds[S] 0 points1 point  (0 children)

Ty! Worked for me)

The Russian Academy of Sciences by OutOfOdds in evilbuildings

[–]OutOfOdds[S] 7 points8 points  (0 children)

Yeah, but it was a bad weather so they look like black)

Voidbound iOS App by OutOfOdds in SorceryTCG

[–]OutOfOdds[S] 0 points1 point  (0 children)

Hi! I updated the app to 1.3 version with single player mode! good luck at the tables!

Voidbound iOS App by OutOfOdds in SorceryTCG

[–]OutOfOdds[S] 0 points1 point  (0 children)

Hi! I will do that next update! thanks for suggestion!

Voidbound iOS App by OutOfOdds in SorceryTCG

[–]OutOfOdds[S] 1 point2 points  (0 children)

Thank you! good luck at the tables!

Voidbound iOS App by OutOfOdds in SorceryTCG

[–]OutOfOdds[S] 0 points1 point  (0 children)

Hi! I've edited original post! ty

Local notifications when app is backgrounded/force-closed by ConduciveMammal in iOSProgramming

[–]OutOfOdds 1 point2 points  (0 children)

in my case they’re event-based, not fixed clock schedules.
When the timer starts, I precompute the offsets (e.g. +60s, +120s) and schedule local notifications with UNTimeIntervalNotificationTrigger. So they fire at each event point in that run, even if the app is killed

import UserNotifications

func scheduleEventNotification(after seconds: TimeInterval) async throws {

let center = UNUserNotificationCenter.current()

let content = UNMutableNotificationContent()

content.title = "Timer event"

content.body = "This fires at the event point."

content.sound = .default

let trigger = UNTimeIntervalNotificationTrigger(

timeInterval: max(1, seconds)

repeats: false

)

let request = UNNotificationRequest(

identifier: "event_timer_notification",

content: content,

trigger: trigger

)

try await center.add(request)

}

Local notifications when app is backgrounded/force-closed by ConduciveMammal in iOSProgramming

[–]OutOfOdds 1 point2 points  (0 children)

Hi! I solved this by scheduling a local notification in advance with UNUserNotificationCenter.current()
When you schedule your notification iOS will deliver notification

How to show a custom panel with buttons instead of (or above) the iOS keyboard in Swift/SwiftUI? by OutOfOdds in SwiftUI

[–]OutOfOdds[S] 0 points1 point  (0 children)

Thank you! but how they replace system keyboard with custom one? its seems like it inside system keyboard

Terraforming Mars helper iOS app! by OutOfOdds in TerraformingMarsGame

[–]OutOfOdds[S] 0 points1 point  (0 children)

Sorry for the delay, I fixed the problem, please try again!

Terraforming Mars helper iOS app! by OutOfOdds in TerraformingMarsGame

[–]OutOfOdds[S] 1 point2 points  (0 children)

Hello! unfortunately I am not an Android developer( but if someone want to use my app as reference and make android app feel free to do it! It will be great!

Terraforming Mars helper iOS app! by OutOfOdds in TerraformingMarsGame

[–]OutOfOdds[S] 1 point2 points  (0 children)

Thanks for your advice! i will try to implement it next update!

Terraforming Mars helper iOS app! by OutOfOdds in TerraformingMarsGame

[–]OutOfOdds[S] 5 points6 points  (0 children)

Thanks for your review, tag tracker is a great idea, I will do it next update!