iOS dev
@iosdevio
10.9K
subscribers
12
photos
5
files
5.97K
links
There is a single sponsored link in each issue (monday).
One sponsor per issue.
Every sponsored link should be highly relevant to Apple ecosystem app development.
Sponsored link price - 100$
Contact:
@tigorn
Download Telegram
Join
iOS dev
10.9K subscribers
iOS dev
https://www.createwithswift.com/creating-view-transitions-in-swiftui/
Create with Swift
Creating view transitions in SwiftUI
Learn how to use create animated transitions in a SwiftUI using the transition and animation modifiers.
iOS dev
https://www.createwithswift.com/recognizing-text-with-the-vision-framework/
Create with Swift
Recognizing text with the Vision framework
Learn how to recognize text using the camera with the Vision framework capabilities in a SwiftUI app.
iOS dev
https://mfaani.com/posts/devtools/binaries/how-do-binaries-work-together/
Mfaani
How Do Binaries work together? What breaks ABI?
Ever wondered what how two binaries interface with one another? Which changes impact ABI and which don't?
iOS dev
https://www.avanderlee.com/swift-testing/vapor-and-swift-testing-running-tests-in-parallel/
SwiftLee
Vapor and Swift Testing: Running tests in parallel
Improve your backend development with Swift Testing and Vapor. Learn about running tests in parallel and boosting performance.
iOS dev
https://www.avanderlee.com/swift-testing/require-macro/
SwiftLee
Using the #require macro for Swift Testing
Discover how #require macro in Swift Testing can set requirements for your tests and make them clearer and easier to understand.
iOS dev
https://swiftonserver.com/beginners-guide-to-protocol-buffers-and-grpc-with-swift/
Swiftonserver
Beginner's Guide to Protocol Buffers and gRPC with Swift - Swift on server
Learn Protocol Buffers and gRPC with Swift in this easy, step-by-step beginner's guide.
iOS dev
https://medium.com/@camposbrunocampos/collapsible-headers-in-swiftui-it-took-three-attempts-to-get-it-just-right-9bd63b06d19e
Medium
Collapsible Headers in SwiftUI
One of the most common patterns we see in mobile apps is vertical scrolling — whether it’s a feed, list, or grid, scrolling is everywhere…
iOS dev
http://swiftwithmajid.com/2024/10/22/introducing-swift-testing-basics/
Swift with Majid
Introducing Swift Testing. Basics.
Swift Testing is a new framework with expressive and intuitive APIs that improve your testing experience. It is powered by macros that allow you to organize and assert your tests. This week, we will learn about the basics of the Swift Testing framework and…
iOS dev
https://www.donnywals.com/swift-testing-basics-explained/
Donny Wals
Swift Testing basics explained – Donny Wals
Swift testing is Apple’s framework for running unit tests in a modern and more elegant way than it was with XCTest, which came before it. This post is the first one in a series of posts that will help…
iOS dev
https://fatbobman.com/en/posts/comprehensive-guide-to-mastering-keypath-in-swift/
fatbobman.com
Comprehensive Guide to Mastering KeyPath in Swift
Explore Swift KeyPath: understand its power, types (AnyKeyPath, WritableKeyPath), usage, and how it enhances metaprogramming. Master property access with KeyPath.
iOS dev
https://www.youtube.com/watch?v=pZdkKDpNgc4
YouTube
Google Engineer Teaches Us How to Set Up Firebase in Your iOS Project
Interested in Adding Firebase to Your iOS Project?
Join me as @PeterFriese explains how to set up Firebase with a SwiftUI application.
Plus, you'll see some real-time mistakes that you might encounter—and how to handle them!
-----
Links:
https://f…
iOS dev
https://www.youtube.com/watch?v=cCZ00b_RNyc
YouTube
Type-Driven Design with Swift - Alex Ozun - SwiftCraft 2024
https://www.swiftcraft.uk
---
Type-Driven Design with Swift - Alex Ozun - SwiftCraft 2024
---
Learn how to harness the power of Swift’s advanced type system, and make it a powerful ally and assistant.
I’ll help you develop a mental model that prioritises…
❤
1
iOS dev
https://www.youtube.com/watch?v=y4GsTwI9I8o
YouTube
CocoaHeadsNL Meetup, 23 October 2024
Live stream of the CocoaHeadsNL meetup at Doctolib Siilo in Amsterdam.
Schedule:
19:00 - Introducing Siilo (Siilo team)
19:15 - Accessibility; the clock is ticking (Bruno Scheele)
20:15 - From Frames to Files - How video works (Tom Lokhorst)
Do you want…
iOS dev
https://www.polpiella.dev/bump-numbers-ci-cd
www.polpiella.dev
How to automatically update build and version numbers in your app using Fastlane
How to make sure your Xcode project's build and version numbers are always up-to-date using Fastlane.
iOS dev
https://swiftology.io/articles/making-illegal-states-unrepresentable/
Swiftology
Making illegal states unrepresentable | Swiftology
In state modeling, perfection is achieved not when there is nothing more to add, but when there is nothing left to take away.
iOS dev
https://medium.com/@batrakov.vitaly/coordinators-swiftui-569a7f9a22c6
Medium
Coordinators & SwiftUI
Can we apply Coordinator approach for SwiftUI?
iOS dev
https://danielsaidi.com/blog/2024/11/04/xcode-stops-fetching-swift-packages
Daniel Saidi
Xcode stops fetching Swift packages
Today, Xcode 16.1 suddenly stopped fetching Swift package dependencies, with a Fatal: cannot use bare repository warning. Let’s see how to fix it, in case it starts happening to you.
iOS dev
https://www.curiousalgorithm.com/post/understanding-dependency-injection-in-swiftui-a-step-by-step-approach
Curious Algorithm
Dependency Injection in SwiftUI
Follow along as we iteratively improve our code from no dependency injection to injection using a Dependency Container.
👎
1
iOS dev
https://www.emergetools.com/blog/posts/preview-driven-development
Emergetools
Emerge Tools Blog | Preview Driven Development
Learn how to leverage Jetpack Compose Previews for testing and mini-apps to build better Android applications
👎
2
iOS dev
https://swiftwithmajid.com/2024/10/29/introducing-swift-testing-lifecycle/
Swift with Majid
Introducing Swift Testing. Lifecycle.
Any function marked with the @Test macro can be a test in the world of the Swift Testing framework. But how do you handle the lifecycle of the tests? How do you define test suites and provide setup and teardown functionality? This week, we will learn how…
iOS dev
https://www.donnywals.com/improving-test-coverage-with-parameterized-tests-in-swift-testing/
Donny Wals
Improving test coverage with parameterized tests in Swift testing
When you subscribe to the practice of test-driven development or just writing tests in general you’ll typically find that you’re going to be writing lots and lots of tests for pretty much everything…