Posts

Post not yet marked as solved
0 Replies
483 Views
let note = UITextView(frame: self.view.frame) self.view.addSubview(note) var text = "" for i in 0..<3000{      text.append("\(i + 1)")     text.append("\n") } note.text = text The code is really simple, when it runs on iOS14, it works fine. But when runs on iOS15 device, just scroll few times(eg: 351 lines), and tap the textView, it will scroll to 648 lines. I don't know if it is a new feature or a bug on iOS15. Test on: Xcode 13.0 beta3 and Xcode 12.5.1, iPhone XR (iOS15.0 beta3)
Posted
by Peter Cai.
Last updated
.
Post not yet marked as solved
0 Replies
383 Views
I would like to train a model for object detection. When the training iteration reached to the maximum I set, Create ML app is still in training process and I don't see any trained model. I tested on both Xcode 11.5 and Xcode 12.0 beta built in Create ML app. The issue is still exist. So just for testing, I set the maximum iteration to 20, no model find when reached to 20 iterations. Anyone has a solution?
Posted
by Peter Cai.
Last updated
.