What is the expected behaviour of UISlider.TrackConfiguration.Tick's title and image properties?
On iOS, these seem to be no-ops. The docs also don't indicate what these properties do.
let ticks = [
UISlider.TrackConfiguration.Tick(position: 0, title: "Slow", image: UIImage(systemName: "tortoise.fill")),
UISlider.TrackConfiguration.Tick(position: 1, title: "Fast", image: UIImage(systemName: "hare.fill"))
]
let configuration = UISlider.TrackConfiguration(ticks: ticks)
let slider = UISlider()
slider.trackConfiguration = configuration
Topic:
UI Frameworks
SubTopic:
UIKit
1
0
22