Blogs

The tech blogs on various topics
August 16, 2022
Round up to n Decimal Digit: Swift

We sometimes in our calculation get results with more than 4 decimal digits or even more. But as a developer, we can’t use the same to display to users. …

July 20, 2022
Set: Swift

A set is an unordered collection of unique elements, meaning it does not allow duplicates. Swift’s Set data type ensures that each element occurs only once in the collection. …

July 2, 2022
Setup Firebase RemoteConfig

In continuation with the previous article stating the benefits and working of Firebase RemoteConfig, this article will help you to set up Firebase step by step. …

June 19, 2022
Map Operator: Swift

The collection is something which is used by almost everyone. It makes our life easy. Array, Set, and Dictionary are the best examples of them. …

June 11, 2022
$0, $1 … $n in Swift

In order to use any parameter in a closure or a higher-order function, we need to name the parameter inside the closure or higher-order function. …

June 4, 2022
Named and Unnamed Parameters: Swift

Functions are something that every developer uses daily. A function can of with or without parameters. Swift has multiple ways of passing the parameters to a function. …

May 29, 2022
Filter Operator: Swift

The collection is something which is used by almost everyone. It makes our life easy. Array, Set, and Dictionary are the best examples of them. …

May 28, 2022
Enumerated in Swift

Enumerated is used to iterate over a collection along with the position access. It returns a sequence of Pairs where the first element in the Pair is the index and the second element is the element itself of the collection. …

May 28, 2022
RemoteConfig in Firebase

In today’s fast-paced world, mobile app developers must adapt quickly to changing user preferences, market demands, and evolving business requirements. To achieve this, developers need a robust mechanism to configure apps remotely without frequent updates. …

May 23, 2022
Labeled Statement : Swift

Swift has a few inbuilt features which make our life super easy. Labeled statements are one of them. It allows us to name a statement and later within the scope, that particular statement can be referenced using the label provided. …

1 2 3 4 5 6 Next