Author: Afriwan Ahda
Drone Carrier – Most Relaxing Games To Play On Your IOS Devices
Thank you Gabriel Price for added Drone Carrier into Most Relaxing Games To Play On IOS Devices list. Please check the following article: https://gameskeys.net/most-relaxing-games-to-play-on-your-ios-devices/
Fuzzle – Slide Puzzle
Privacy Policy Afriwan Ahda built the Fuzzle - Slide Puzzle app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Kajian Ust. Adi Hidayat
Privacy Policy Afriwan Ahda built the Kajian Ust. Adi Hidayat app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Motion Notes – Sticky Notes
Privacy Policy Afriwan Ahda built the Motion Notes - Sticky Notes app as an free app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Fast – Speak Punjabi
Privacy Policy Afriwan Ahda built the Fast - Speak Punjabi app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Fast – Speak Kannada
Privacy Policy Afriwan Ahda built the Fast - Speak Kannada app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Fast – Speak Esperanto
Privacy Policy Afriwan Ahda built the Fast - Speak Esperanto app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Fast – Speak Georgian
Privacy Policy Afriwan Ahda built the Fast - Speak Georgian app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
Fast – Speak Slovene
Privacy Policy Afriwan Ahda built the Fast - Speak Slovene app as an Ad Supported app. This SERVICE is provided by Afriwan Ahda at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of…
How to Show Alert & Sheet with Swift
This is example for show Alert & Sheet easily. Simple alert: alert(title: "Simple Alert") Custom alert: let yesAction = UIAlertAction(title: "Yes", style: .default) { (action) in toast(message: "Yes action", view: self.view) } let noAction = UIAlertAction(title: "No", style: .destructive) { (action) in toast(message: "No action", view: self.view) } alert(title: "Alert",…
How to Convert String to SHA-256 & SHA-512 with Swift
The SHA (Secure Hash Algorithm) is one of a number of cryptographic hash functions. A cryptographic hash is like a signature for a text or a data file. Hash is a one way function – it cannot be decrypted back. It's implemented in some widely used security applications and protocols,…
How to Show Toast on iOS App with Swift
Showing Toast like image above for iOS app not as simple as Android. Now with AfriwanLib we can show Toast on iOS app easily with Swift language. This is simple step to show Toast like image above on AfriwanLib. First step, you want to add pod 'AfriwanLib' similar to the…