Author: joynal27
AVSpeechSynthesizer in SwiftUI
An object that produces synthesized speech from text utterances and enables monitoring or controlling of ongoing speech. To speak some
Read moreTranslate text using “MLKitTranslate” model
Here i used google MLKitTranslate model. I used pod ‘GoogleMLKit/Translate’, ‘3.2.0’ .Create enum which language would be translate.
Read moreCollections of Swift
Advantages of collections: var collectionArray = [“iOS”, “Flutter”, “iOS”, “Android”, “Web”] collectionArray.map{$0.uppercased()} Output: [“IOS”, “FLUTTER”, “IOS”, “ANDROID”, “WEB”] collectionArray.filter{$0 ==
Read more