iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.03K
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.8K subscribers
iOS dev
https://www.raywenderlich.com/34044359-asyncsequence-asyncstream-tutorial-for-ios
kodeco.com
AsyncSequence & AsyncStream Tutorial for iOS
Learn how to use Swift concurrency’s AsyncSequence and AsyncStream protocols to process asynchronous sequences.
iOS dev
https://ikyle.me/blog/2022/creating-cool-ui-shape-morphing
Kyle Howells Blog
Creating Cool UI: iOS Shape Morphing
Recreating cool UI demos I've seen online. This time, morphing between different icon shapes and learning about metaballs.
iOS dev
https://ikyle.me/blog/2022/creating-a-coreimage-filter-with-a-metal-kernel
Kyle Howells Blog
Creating a CoreImage Filter with a Metal Shader
How to setup Xcode to build a Metal Shader for use with a custom CoreImage Kernel
iOS dev
http://aplus.rs/2022/bitmask-attributes-in-core-data/
Bitmask (bitwise) values in Core Data
iOS dev
https://www.pointfree.co/episodes/ep195-async-composable-architecture-the-problem
www.pointfree.co
Episode #195: Async Composable Architecture: The Problem
The Composable Architecture’s fundamental unit of effect is modeled on Combine publishers because it was the simplest and most modern asynchrony tool available at the time. Now Swift has native concurrency tools, and so we want to make use of those tools…
iOS dev
https://www.swiftjectivec.com/Using-Typed-Payloads-In-NSUserActivity-in-SwiftUI/
Swiftjective-C
Typed Payloads in SwiftUI using NSUserActivity
User activities and SwiftUI never really fit like a glove, but regardless they are key for state restoration. Luckily, SwiftUI has a little trick to make the process pragmatic and type safe.
iOS dev
https://mackuba.eu/notes/wwdc22/swiftui-cookbook-for-navigation/
mackuba.eu
The SwiftUI cookbook for navigation
Kuba Suder's blog on Mac & iOS development
iOS dev
https://swiftui-lab.com/swiftui-renders/
iOS dev
https://serialcoder.dev/text-tutorials/swift-tutorials/testing-throwing-methods-in-swift-actors/
SerialCoder.dev
Testing Throwing Methods In Swift Actors - SerialCoder.dev
Read about how to test error throwing code that exists in actors asynchronously and what to look out for smooth testing.
iOS dev
https://www.swift.org/blog/swift-language-updates-from-wwdc22/
Swift.org
Swift language announcements from WWDC22
iOS dev
https://twitter.com/parrots/status/1544748961252122625
X (formerly Twitter)
Curtis Herbert (@parrots) on X
Oh geez. Writing is really on the wall.
iOS dev
https://digitalbunker.dev/rate-limiting-on-ios/
Digital Bunker
Rate Limiting on iOS
Whenever you enter an address into Google Maps or search for a video on YouTube, you may have noticed that the auto-complete suggestions update at regular intervals rather than with every change to the search query.
When you consider the scale of these platforms…
iOS dev
https://swiftsenpai.com/swift/dynamic-dispatch-with-generic-protocols/
Swift Senpai
How to Achieve Dynamic Dispatch Using Generic Protocols in Swift 5.7 - Swift Senpai
With improvements in Swift 5.7, achieving dynamic dispatch on a protocol with associated types has never been easier. Here's how.
iOS dev
https://holyswift.app/the-trade-offs-of-using-mirror-api-to-do-code-reflection-in-swift
Holy Swift
The Trade-offs of Using Mirror API to do Code Reflection in Swift - Holy Swift
Everything you need to know about code reflection in Swift. Learn how to get private properties values and more! Use it now the Mirror API.
iOS dev
https://useyourloaf.com/blog/whats-new-in-xcode-14-previews/
Use Your Loaf - iOS Development News & Tips
What's New in Xcode 14 Previews
A tour of the new SwiftUI preview canvas in Xcode 14.
iOS dev
http://swiftwithmajid.com/2022/07/06/background-tasks-in-swiftui/
Swift with Majid
Background tasks in SwiftUI
One of the exciting frameworks released along with iOS 13 was the BackgroundTasks framework. It allows you to schedule work intelligently in the background. Finally, we can handle background tasks using the SwiftUI app lifecycle. This week we will learn how…
iOS dev
https://samwize.com/2022/07/07/how-to-use-urlprotocol-to-mock-networking-api/
@samwize
How to use URLProtocol to mock networking API
Unit testing for networking API requires some work because to mock the HTTP response is non-trivial, be it using 1st party URLSession or 3rd party Alamofire.
iOS dev
https://www.emergetools.com/blog/posts/iOS16LaunchTime
Emergetools
Emerge Tools Blog | How iOS 16 makes your app launch faster
Experience the future of mobile development. Join top companies like DoorDash, Square & Duolingo who use Emerge Tools to deliver the best app performance to their users.
iOS dev
https://www.avanderlee.com/swift/generics-constraints/
SwiftLee
Generics in Swift explained with code examples
Generics in Swift prevent code duplication by allowing code to be reused. It's key to know when and how to use generics in your advantage.
iOS dev
https://itnext.io/decoding-dynamic-json-with-swift-codable-64160d06b456
Medium
Decoding Dynamic JSON with Swift Codable
Handle dynamic server responses working with Swift’s sound type system