iOS


Related: How To Customize Strings in Swift? Old but Gold: NSAttributedString As default, SwiftUI allows customizing Text() view like below: [crayon-6621644c01712889170338/] But when you try to show an NSAttributedString directly in Text(), you see an error: Let’s try to hack it! A custom UIViewRepresentable class will help us to avoid […]

How To Use NSAttributedString in SwiftUI: Hack It!


Related: How To Use NSAttributedString in SwiftUI: Hack It! We use NSAttributedString to create different styled texts in Swift. There are many options to modify in this class. To understand how it works, let’s get started with a simple attributed string example. [crayon-6621644c01f88513777575/] Here, we created an attributed string by […]

How To Customize Strings in Swift? Old but Gold: NSAttributedString


Custom UIAlertController – iOS (Objective-C) Creating a custom UIAlertController helps you to show a popup in your iOS application whenever you need to show a simple warning/information popup. It is an embedded iOS library and that means you do not need to install any 3rd party library. A classic popup in […]

Custom UIAlertController – iOS (Objective-C)



iOS Network Connection with AFNetworking – iOS(Objective-C) There are many libraries for iOS to connect network and get/post data. This tutorial will show one of the most popular library: AFNetworking. It is easy to implement and gather data with this library in Objective-C. Assume that you have a data as […]

iOS Network Connection with AFNetworking – Objective-C


“Hello World” for Dummies… – iOS “Hello World” again. This is an introduction to iOS development for newbies. This tutorial explains briefly how to start developing an iOS application. As Android development explained before, these tutorials will continue with “native” development which means you need to be familiar with Objective-C […]

“Hello World” for Dummies… – iOS