#swift

Found 83 articles tagged with #swift

Difference between private and fileprivate in Swift

In Swift, private provides the strictest level of access control. You should only use fileprivate when you have a specific reason to allow access from other parts of the same file.

Mar 09, 2024#swift#comparison

What's New in Swift 5.10

Swift 5.10 accomplishes full data isolation in the concurrency language model. This important milestone has taken years of active development over many releases.

Difference between compactMap and flatMap in Swift

Method compactMap removes nil results from optional value sequences during transformation, and flatMap flattens nested sequences into a single level sequence.

Mar 04, 2024#swift#comparison

How to use variadic parameters in Swift

Variadic parameters are useful when you want to create a function that can take any number of arguments of a specific type without specifying them individually.

Mar 03, 2024#swift#functions

When to use computed properties or methods in Swift

Both computed properties and methods can provide dynamic behavior, allowing you to calculate values or perform actions based on the current state of an instance.

Feb 26, 2024#swift

How to capitalize first letter in Swift

Capitalizing first letter of each word, the first letter of a sentence, or all caps lies in the specific style and purpose of text presentation.

Jan 28, 2024#swift#strings

How to create a custom URLSession in Swift

It's important to consider the specific requirements of your tasks and choose the appropriate session type and configuration accordingly.

Jan 06, 2024#swift#network

How to compare two strings in Swift

One of the basic operations in Swift is to compare two strings for equality or order. There are different ways to do that, depending on your needs.

Nov 28, 2023#swift#strings

How to catch different errors in Swift

In Swift you cannot rely on the compiler to check the error type for you, you have to use runtime checks or type casting to determine what kind of error you are dealing with.

Oct 08, 2023#swift#errors

How to use lazy variables in Swift

This can be useful when the initial value of a variable is expensive to compute, or when it is not needed until it is actually used in the code.

Sep 27, 2023#swift