Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
KI & AI VideosJulian Goldie SEO: I Ranked in Google + Grok in 24 Hours(22.09.2026 um 15:00 Uhr)
IT Security Toolsshannon v3.3.0(22.09.2026 um 13:56 Uhr)
IT Security Toolspentest-harness(22.09.2026 um 14:31 Uhr)
Reverse EngineeringPureRAT-msbuild.exe--C2-Extraction--Net-Evasion-Analysis(22.09.2026 um 15:06 Uhr)
IT Security NachrichtenBeware these fake websites selling subscriptions to AI assistants(22.09.2026 um 15:11 Uhr)
IT Security NachrichtenDORA Year Two: Reicht die SOC-Sicht für Echtzeit-Angriffe?(22.09.2026 um 14:54 Uhr)
IT Security NachrichtenDORA Year Two: Netzwerk-Sicht entscheidet über SOC-Fähigkeiten(22.09.2026 um 15:27 Uhr)
IT Security NachrichtenIT Security News Hourly Summary 2026-09-22 15h : 19 posts(22.09.2026 um 15:00 Uhr)
KI & AI VideosJulian Goldie SEO: I Ranked in Google + Grok in 24 Hours(22.09.2026 um 15:00 Uhr)
IT Security Toolsshannon v3.3.0(22.09.2026 um 13:56 Uhr)
IT Security Toolspentest-harness(22.09.2026 um 14:31 Uhr)
Reverse EngineeringPureRAT-msbuild.exe--C2-Extraction--Net-Evasion-Analysis(22.09.2026 um 15:06 Uhr)
IT Security NachrichtenBeware these fake websites selling subscriptions to AI assistants(22.09.2026 um 15:11 Uhr)
IT Security NachrichtenDORA Year Two: Reicht die SOC-Sicht für Echtzeit-Angriffe?(22.09.2026 um 14:54 Uhr)
IT Security NachrichtenDORA Year Two: Netzwerk-Sicht entscheidet über SOC-Fähigkeiten(22.09.2026 um 15:27 Uhr)
IT Security NachrichtenIT Security News Hourly Summary 2026-09-22 15h : 19 posts(22.09.2026 um 15:00 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Haptic Feedback Design for Workout Apps

Why Haptics Matter More Than Sound in the Gym When I built BoxTime, I assumed the bell sound would be the primary way users know a round ended. Then I tested it at an actual boxing gym. Between the music, the bag noise, other people…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




Why Haptics Matter More Than Sound in the Gym



When I built BoxTime, I assumed the bell sound would be the primary way users know a round ended. Then I tested it at an actual boxing gym. Between the music, the bag noise, other people training -- you cannot hear your phone. Haptics became the real signal.






The Haptic Engine on iOS



Apple gives you three levels of haptic control, from simple to granular:






UIImpactFeedbackGenerator



The simplest option. Predefined impact styles.




let impact = UIImpactFeedbackGenerator(style: .heavy)
impact.prepare()
impact.impactOccurred()









UINotificationFeedbackGenerator



Semantic feedback for success, warning, and error states.




let notification = UINotificationFeedbackGenerator()
notification.prepare()
notification.notificationOccurred(.success)









Core Haptics (CHHapticEngine)



Full control over haptic patterns. This is where it gets interesting for a timer app.




import CoreHaptics

class HapticManager {
private var engine: CHHapticEngine?

func prepareEngine() {
guard CHHapticEngine.capabilitiesForHardware().supportsHaptics else { return }

do {
engine = try CHHapticEngine()
try engine?.start()
} catch {
print("Haptic engine failed: \(error)")
}
}

func playRoundEndPattern() throws {
// Three strong taps with decreasing intervals - feels like a boxing bell
let events: [CHHapticEvent] = [
CHHapticEvent(
eventType: .hapticTransient,
parameters: [
CHHapticEventParameter(parameterID: .hapticIntensity, value: 1.0),
CHHapticEventParameter(parameterID: .hapticSharpness, value: 0.8)
],
relativeTime: 0
),
CHHapticEvent(
eventType: .hapticTransient,
parameters: [
CHHapticEventParameter(parameterID: .hapticIntensity, value: 0.8),
CHHapticEventParameter(parameterID: .hapticSharpness, value: 0.6)
],
relativeTime: 0.15
),
CHHapticEvent(
eventType: .hapticTransient,
parameters: [
CHHapticEventParameter(parameterID: .hapticIntensity, value: 0.6),
CHHapticEventParameter(parameterID: .hapticSharpness, value: 0.4)
],
relativeTime: 0.30
),
]

let pattern = try CHHapticPattern(events: events, parameters: [])
let player = try engine?.makePlayer(with: pattern)
try player?.start(atTime: CHHapticTimeImmediate)
}
}









Designing a Haptic Language



In BoxTime, I use different haptic patterns for different events, so the user can feel what is happening without looking at the screen:





  • Round start: Two sharp taps (get ready, fight)


  • Round end: Three descending taps (imitates a bell resonating)


  • 10-second warning: Single soft pulse (heads up)


  • Workout complete: Long success pattern (celebration feel)



The key insight is that haptic patterns should be distinct enough to be recognized without visual context. If your round-start and round-end patterns feel similar, the user has to look at the screen to know what happened, which defeats the purpose.






The .prepare() Call Matters



Haptic engines have a spin-up latency. If you create a generator and immediately fire it, there may be a perceptible delay. Always call .prepare() ahead of time.




// Bad: latency on first fire
func roundEnding() {
let impact = UIImpactFeedbackGenerator(style: .heavy)
impact.impactOccurred() // might be delayed
}

// Good: pre-warm the engine
func roundStarted() {
upcomingHaptic.prepare() // warm up for the end-of-round haptic
}

func roundEnding() {
upcomingHaptic.impactOccurred() // fires immediately
}






In BoxTime, I prepare the next haptic event as soon as the current phase starts. By the time the round ends, the engine is ready.






Testing Realities



The iOS Simulator does not support haptics. You must test on a real device. And not all devices support Core Haptics -- the iPhone 7 supports basic UIFeedbackGenerator haptics but not the full CHHapticEngine. Always check CHHapticEngine.capabilitiesForHardware().supportsHaptics and fall back gracefully.






What I Learned



Haptics are not a nice-to-have in fitness apps. They are essential. A boxer with gloves on cannot easily tap their phone screen. They need to feel the transitions. Investing time in distinct, well-timed haptic patterns was one of the highest-impact improvements I made to BoxTime.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Haptic Feedback Design for Workout Apps

Thematisch verwandte Begriffe: Haptic, Feedback, Design, Workout · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-95667 | The MISP installer scripts (for Debian 12, Debian 13, Ubuntu 24.04, and …
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick