#ios

Found 30 articles tagged with #ios

Best Practices for Swift 6 Migration

Common challenges during migration are global variables and interactions with the main actor in UI code. Solutions often involve marking variables as immutable, isolating code to the main actor, or using specific annotations to manage concurrency safety.

Should I use SwiftData or CoreData in 2025?

SwiftData is presented as a more modern, Swift-native framework with a simpler API and better integration with SwiftUI, aiming to reduce boilerplate code. CoreData, on the other hand, is described as a mature and powerful framework, highly optimized for complex data models and large datasets, but with a steeper learning curve.

iOS Deep Linking: URL Schemes vs Universal Links

There are two ways to implement deep linking in iOS: Define your own custom schemes, or use standard HTTP or HTTPS links that can open your app if it is installed.

Nov 30, 2024#ios

Things iOS Developers Need To Know About How Dates Work In Swift

Working with dates in Swift is a fundamental skill for iOS developers, especially as app functionalities increasingly rely on accurate date and time management.

Aug 28, 2024#swift#ios

Difference between KVO and KVC in Swift

While KVO and KVC are related and both are part of Cocoa's observation mechanism, they serve different purposes and operate at different levels of abstraction.

Apr 04, 2024#swift#objc#ios

iOS biometric authentication with Face ID and Touch ID

Supplement your own authentication scheme with biometric authentication, making it easy for users to access sensitive parts of your app.

Mar 27, 2024#ios#security

How to use xcconfig files in Xcode projects

You can create as many xcconfig files as you want, and you can specify different build configuration files for debug and release builds, and for different platforms and architectures.

Jul 21, 2023#xcode#swift#ios

How to uninstall Xcode and clear its junk completely

Uninstalling Xcode can be tricky due to its junk data. You must locate multiple files, folders, and dependencies that need to be removed to free up space.

Jun 27, 2023#xcode#how-to#ios

What apps and services are contained in iCloud?

It's a suite of cloud-based technologies and services, which provide users with seamless synchronization, backup, and access to their data across Apple devices and browsers.

Jun 23, 2023#apple#ios#macos

How to show in-app web browser in iOS apps

In iOS, an in-app browser is a component of an app that allows users to view web content within the app, rather than opening the default browser app.

May 07, 2023#ios