Agent skills for iOS, iPadOS, Swift, SwiftUI, and modern Apple framework development.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Advisory
Suggest reviewing before use
Runtime tools for diagnosing focus issues in UIKit and SwiftUI apps.
Docs: UIFocusDebugger
UIFocusDebugger is a runtime-only class for use in the LLDB console during
a debugging session. Do not call these methods from app code.
// Show current focus state
po UIFocusDebugger.status()
// Check why a specific view can't receive focus
po UIFocusDebugger.checkFocusability(for: myButton)
// Show focus group hierarchy
po UIFocusDebugger.focusGroups(for: myViewController)
// Show preferred focus chain
po UIFocusDebugger.preferredFocusEnvironments(for: myViewController)
// Simulate a focus update from a given environment
po UIFocusDebugger.simulateFocusUpdateRequest(from: myViewController)"Why won't this view focus?"
po UIFocusDebugger.checkFocusability(for: myView)Common causes returned:
canBecomeFocused returns falseshouldUpdateFocus(in:) returned false"Where does focus go next?"
po UIFocusDebugger.simulateFocusUpdateRequest(from: currentView)Shows the focus engine's evaluation of the next destination based on geometry.
SwiftUI does not expose UIFocusDebugger directly. Strategies:
.onChange(of: focusedField) to log focus transitions:.onChange(of: focusedField) { old, new in
print("Focus moved: \(String(describing: old)) → \(String(describing: new))")
}Use Accessibility Inspector (Xcode → Open Developer Tool) to inspect focus order and accessibility element hierarchy.
Set breakpoints in didUpdateFocus(in:with:) for UIKit-hosted views
within SwiftUI.
| Anti-Pattern | Problem | Fix |
|---|---|---|
Programmatically setting focus in viewDidLoad | Focus engine hasn't completed initial update | Use viewDidAppear or DispatchQueue.main.async |
Calling setNeedsFocusUpdate() without updateFocusIfNeeded() | Focus update is deferred indefinitely | Pair both calls: setNeedsFocusUpdate(); updateFocusIfNeeded() |
Overriding preferredFocusEnvironments with stale references | Focus targets a deallocated or off-screen view | Return currently valid, on-screen environments |
Using isHidden = true to disable focus on a view | Removes the view from layout entirely | Use canBecomeFocused override or focusable(false) |
Animating focus changes without UIFocusAnimationCoordinator | Animation doesn't sync with system focus animation | Use coordinator.addCoordinatedFocusingAnimations |
Forgetting collisionComponent on RealityKit entities | Entity can't receive gaze/direct-touch input or hover feedback in visionOS | Add CollisionComponent alongside InputTargetComponent |
| Not testing with Full Keyboard Access on macOS | Tab focus skips custom controls | Enable Keyboard Navigation in System Settings and test |
| Relying on touch-based interactions on tvOS | No touch input available | Make all actions accessible via focus + select |
.tessl-plugin
skills
accessorysetupkit
references
activitykit
references
adattributionkit
references
alarmkit
references
app-clips
app-intents
app-store-optimization
app-store-review
apple-on-device-ai
appmigrationkit
references
audioaccessorykit
references
authentication
references
avkit
references
background-processing
references
browserenginekit
references
callkit
references
carplay
references
cloudkit
references
contacts-framework
references
core-bluetooth
references
core-data
core-motion
references
core-nfc
references
coreml
references
cryptokit
references
cryptotokenkit
references
debugging-instruments
device-integrity
references
dockkit
references
energykit
references
eventkit
references
financekit
references
focus-engine
gamekit
references
healthkit
references
homekit
references
ios-accessibility
ios-ettrace-performance
ios-localization
ios-memgraph-analysis
ios-networking
ios-simulator
references
mapkit
metrickit
references
musickit
references
natural-language
references
paperkit
references
passkit
references
pdfkit
references
pencilkit
references
permissionkit
references
photokit
push-notifications
realitykit
references
relevancekit
references
scenekit
references
sensorkit
references
speech-recognition
references
spritekit
references
storekit
swift-api-design-guidelines
swift-architecture
references
swift-charts
references
swift-codable
references
swift-concurrency
swift-formatstyle
references
swift-language
swift-security
references
swift-testing
swiftdata
swiftlint
swiftui-animation
swiftui-gestures
references
swiftui-layout-components
swiftui-liquid-glass
references
swiftui-patterns
swiftui-performance
swiftui-uikit-interop
swiftui-webkit
tabletopkit
references
tipkit
references
vision-framework
weatherkit
references
widgetkit
references