Post

Replies

Boosts

Views

Activity

Reply to Crash in iOS18
indeed, for my case, iOS18 the crash point is here,,, more than 1 dequeue fix by recheck logic/code-flow func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> MyCell { let cell1 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell let cell2 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell let cell3 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell let cell4 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell return cell1 }
Topic: UI Frameworks SubTopic: UIKit
Sep ’24
Reply to -ld_classic or -ld64 About when will it be completely deleted?
We have the same problem. XCode26b2 Linker assertion, then segfault 11 when build to device. For some unknown reasons, build to simulator works. Previously, XCode16, we workaround with -ld_classic flag
Replies
Boosts
Views
Activity
Jul ’25
Reply to Crash in iOS18
indeed, for my case, iOS18 the crash point is here,,, more than 1 dequeue fix by recheck logic/code-flow func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> MyCell { let cell1 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell let cell2 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell let cell3 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell let cell4 = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as? MyCell return cell1 }
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Sep ’24
Reply to Default Camera is not animating.
oneliner fix, in 2024 🤣🤣🤣, hope its useful oneday. sceneView.gestureRecognizers?.filter{ $0 is UIPanGestureRecognizer}.first?.state = .began
Topic: Graphics & Games SubTopic: SceneKit Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to Cant able to test HTTP/3 in iOS 16
x2 no h3 on iOS16 for me too, on iPhone 14 pro max, 16.1.1
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to Crash on iOS 14.5:nw_endpoint_flow_copy_path + 44
same crash reported,,, iOS 14.5 and 14.6beta
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’21