I'm using the newest version of XCode together with iOS 16.0.3. I'm trying to implement an everyday use case - a LazyVStack inside a ScrollView. On my iPhone 13 Pro which has a 120Hz display I'm not able to get a buttery smooth scroll without stuttering and jumping even for this simple example:
ScrollView {
LazyVStack {
ForEach(1...100, id: \.self) { value in
Text("Some long text which wraps to 2 lines because why not, .....!!!! \(value)")
}
}
}
Is it a known issue of iOS 16?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Is my UNNotificationServiceExtension subclass instantiated per each call of didReceive(_ request: UNNotificationRequest ... or can one instance handle multiple calls of didReceive(_ request: UNNotificationRequest ...?I couldn't find any specific information regarding this behavior in the official documentation.