Posts

Post marked as solved
3 Replies
608 Views
The professor codes like this in the lecture var number: Int { return 3 } what's different about this? var number: Int = 3
Posted Last updated
.
Post marked as solved
1 Replies
1k Views
I'm sorry I don't speak English well, so I use a translator so sentences may be awkward. I am a Korean college student who likes swift. Most Korean men go to the military. So next year I will take a leave of absence from university and I will be one of them. But, I would like to participate in the annual WWDC swift student challenge. Is it possible for me to participate and win? If I take a leave of absence and participate as a soldier, is it impossible to receive the award?
Posted Last updated
.
Post not yet marked as solved
0 Replies
915 Views
I'm sorry I don't speak English well, so I use a translator so sentences may be awkward. I am a Korean college student who likes swift. Most Korean men go to the military. So next year I will take a leave of absence from university and I will be one of them. But, I would like to participate in the annual WWDC swift student challenge. Is it possible for me to participate and win? If I take a leave of absence and participate as a soldier, is it impossible to receive the award?
Posted Last updated
.
Post not yet marked as solved
0 Replies
809 Views
I want to get real time camera frames to apply machine learning in swiftui. i made camera app with swiftui like this. but, i don't know how to get camera frame and how to apply machine learning techniques to camera frames struct ImagePicker: UIViewControllerRepresentable {       var sourceType: UIImagePickerController.SourceType = .camera       func makeUIViewController(context: UIViewControllerRepresentableContext) -> UIImagePickerController {           let imagePicker = UIImagePickerController()         imagePicker.allowsEditing = false         imagePicker.sourceType = sourceType           return imagePicker     }       func updateUIViewController(_ uiViewController: UIImagePickerController, context: UIViewControllerRepresentableContext) {       } }
Posted Last updated
.
Post not yet marked as solved
0 Replies
1.1k Views
i'm learning about swiftui and machine learning(by python pytorch). I want to use machine learning in swiftui like coreml or vision. but, almost reference of coreml or vision are written in uikit. so, any references(book or lecture or document, yotube) to machine learning with swiftui?
Posted Last updated
.