iOS dev
@iosdevio
10.9K
subscribers
12
photos
5
files
6.01K
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://digitalbunker.dev/chaikins-algorithm-in-swiftui/
Digital Bunker
Chaikin's Algorithm In SwiftUI
Discover the differences between Chaikin's Algorithm and Bézier curves in this blog post. Learn how these tools create smooth curves, their applications in design and animation, and which method is best suited for your needs. Ideal for designers and developers…
iOS dev
https://jacobbartlett.substack.com/p/advanced-core-image
Jacob’s Tech Tavern
Advanced Core Image
Use Metal to create custom Core Image kernels
iOS dev
https://www.avanderlee.com/concurrency/swift-6-migrating-xcode-projects-packages/
SwiftLee
Swift 6: What’s New and How to Migrate
What's new in Swift 6 and how do you migrate your projects and packages? Learn how to apply incremental migration and why you should update.
iOS dev
https://www.massicotte.org/concurrency-swift-6-se-0430
massicotte.org
SE-0430: sending parameter and result values
Everyone seems excited about region-based isolation. And they should be! It is a pretty amazing technology that will reduce the need for Sendable types. However, it does has limitations. It’s still fairly easy to come up with safe patterns the compiler cannot…
iOS dev
https://www.hackingwithswift.com/articles/270/whats-new-in-swiftui-for-ios-18
Hacking with Swift
What’s new in SwiftUI for iOS 18
We got new API for colors and gradients, more scrollview improvements, tab improvements, and more.
iOS dev
https://fatbobman.com/en/posts/creating-stunning-dynamic-text-effects-with-textrender/
fatbobman.com
Creating Stunning Dynamic Text Effects with TextRenderer
Explore SwiftUI's TextRenderer for dynamic text effects. Learn to customize text rendering, create colorful animations, & use transitions. Dive into the new WWDC 2024 feature!
iOS dev
https://marcoeidinger.github.io/appleframeworks/
marcoeidinger.github.io
Public Apple Frameworks
View all public frameworks from Apple and filter based on platform and availability
iOS dev
https://xiaozhuanlan.com/topic/5946873021
Xiaozhuanlan
WWDC24 10195 - Go further with Swift Testing - 小专栏
WWDC24 内参 - @老司机技术 - 摘要:Swift Testing 是 Swift 团队推出的一个全新的测试框架,集合了原生、开源、跨平台、高效、易用、IDE 无缝集成等新特性。文章从 0 开始介绍如何使用 Swift Testing ,对比了与 XCTest 的差异,最后对 Swift T...
iOS dev
https://blog.thomasdurand.fr/story/2024-06-26-wwdc24-recap/
Dean’s blog
Attending WWDC24 recap at Apple Paris
This Wednesday morning, I had the opportunity to attend the in-person recap of this year WWDC in Paris. I’m very happy to see those events flourishing all around the world, and specifically this year as I hadn’t as much time as I’d…
iOS dev
https://www.emergetools.com/blog/posts/swiftdata-vs-realm-performance-comparison
Emergetools
Emerge Tools Blog | SwiftData vs Realm: Performance Comparison
Benchmarking the performance of SwiftData vs. Realm to help you decide on your persistence framework.
iOS dev
https://www.createwithswift.com/using-multi-step-animations-in-swiftui/
Create with Swift
Using multi-step animations in SwiftUI
Explore how to define and use a multi-step animation in your SwiftUI app.
iOS dev
https://medium.com/@ryan_willis/navigating-accessibility-a-swiftui-vs-uikit-comparison-40dfc94cfffa
Medium
Navigating Accessibility: A SwiftUI vs. UIKit Comparison
A Comparative Exploration of Accessibility Complexity between SwiftUI and UIKit.
iOS dev
https://alexanderweiss.dev/blog/2024-06-24-using-textrenderer-to-create-highlighted-text
alexanderweiss.dev
Using TextRenderer to create highlighted text
[`TextRenderer`](https://developer.apple.com/documentation/swiftui/textrenderer) is a new protocol introduced at WWDC 2024 which lets us enhance how text is rendered in SwiftUI. In this small post, I want to show how to create a view that enables you...
iOS dev
https://johnoreilly.dev/posts/exploring-compose_multiplatform_sharing_ios/
John O'Reilly
Exploring New Worlds of UI sharing possibilities in PeopleInSpace using Compose Multiplatform
I’ve written about the use of Compose Multiplatform for sharing UI code in a number of previous articles but was inspired by following recent session by Touchlab (and related sample) to explore this further….in particular in the PeopleInSpace Kotlin Multiplatform…
iOS dev
https://www.avanderlee.com/swift/async-await/
SwiftLee
Async await in Swift explained with code examples
Async await in Swift allows to write asynchronous tasks with structured concurrency. Maintain readability in complex code.
iOS dev
https://swiftonserver.com/websocket-tutorial-using-swift-and-hummingbird/
iOS dev
https://codingwithvera.com/whats-coming-to-xcode-16/
Coding With Vera
What's Coming to Xcode 16
🔥
At this year's WWDC, Apple unveiled new shiny
✨
features for Xcode 16.
With Swift Testing already exciting iOS Developers, Swift 6 and all the new features look promising.
iOS dev
https://www.createwithswift.com/displaying-tips-based-on-parameters-and-events-with-tipkit/
Create with Swift
Displaying tips based on parameters and events with TipKit
Learn how to trigger tips based on parameters and events with TipKit in a SwiftUI app.
iOS dev
https://swiftwithmajid.com/2024/06/25/mastering-scrollview-in-swiftui-scroll-geometry/
Swift with Majid
Mastering ScrollView in SwiftUI. Scroll Geometry
The ScrollPosition type is all you need to programmatically read or change the scroll position. Still, it doesn’t provide enough information when a user interacts with a scroll view using gestures. SwiftUI solves this problem by introducing the new ScrollGeometry…
iOS dev
https://www.jessesquires.com/blog/2024/06/29/swiftui-scene-phase/
Jesse Squires
SwiftUI app lifecycle: issues with ScenePhase and using AppDelegate adaptors
SwiftUI introduced the ScenePhase API in iOS 14 and macOS 11. This was SwiftUI’s answer to handling application lifecycle events. At the same time, SwiftUI i...