iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.04K
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://daringsnowball.net/articles/swiftui-coordinatespace/
Matthew's Dev Blog
Using CoordinateSpace to draw over a SwiftUI List | Matthew's Dev Blog
How to accurately position a View over a ScrollView or List, using CoordinateSpaces.
iOS dev
https://www.runway.team/blog/how-to-improve-ios-build-times-with-modularization
Runway
How to improve iOS build times with modularization | by Runway
Modularization establishes an architecture that allows scaling applications and codebases to grow while keeping build times in check. In this post, we’ll look at how all this plays out in the iOS world (though there are certainly themes common to all platforms…
iOS dev
https://www.swiftjectivec.com/Testing-SwiftUI-Bindings-in-Xcode-Previews/
Swiftjective-C
Testing SwiftUI Bindings in Xcode Previews
Xcode previews are there to make use faster. And they do - but if you want to test out bindings, you need to give it a little bit of thought.
iOS dev
https://uxdesign.cc/designing-for-scalable-dynamic-type-in-ios-5d3e2ae554eb
Medium
Designing for scalable Dynamic Type in iOS for accessibility
Design deliverables and principles for implementing the Dynamic Type accessibility setting in iOS.
iOS dev
https://www.raywenderlich.com/34699757-swiftui-view-modifiers-tutorial-for-ios
kodeco.com
SwiftUI View Modifiers Tutorial for iOS
Learn how to refactor your code to create powerful custom SwiftUI view modifiers. Make your views look consistent and your code easier to read and maintain.
iOS dev
https://holyswift.app/new-mapkit-configurations-with-swiftui/
Holy Swift
New MapKit Configurations with SwiftUI - Holy Swift
Learn how to use the new MapKit Configurations with SwiftUI. MKMapConfiguration is the new abstract interface to create amazing maps in iOS.
iOS dev
https://holyswift.app/two-sum-problem-in-swift/
Holy Swift
Two Sum Problem in Swift - Holy Swift
How to solve the first Leetcode problem in Swift. Two Sum problem solved in Swift! Use hash maps to leverage your daily algorithms.
iOS dev
https://swiftwithmajid.com/2022/08/30/lock-screen-widgets-in-swiftui/
Swift with Majid
Lock screen widgets in SwiftUI
One of the most requested features for iOS was customizable lock screens. We can populate our lock screen with glanceable widgets. Implementing a lock screen widget is straightforward because its API shares the same code with home screen widgets. This week…
iOS dev
https://forceunwrap.com/probably-the-best-guide-to-swift-timer/
forceUnwrap - Lift your Swift skills & career to the next level
Probably the best guide to Swift Timer - forceUnwrap
Swift's Timer class allows us to schedule work. Repeat the work or run it once. SwiftUI import SwiftUI struct TimersSwiftUIPlayground: View { private let timer = Timer.publish(every: 1, on: .main, in: .common).autoconnect() @State private var timerRunCount…
iOS dev
https://rensbr.eu/blog/swiftui-diffing/
SwiftUI's diffing algorithm
iOS dev
https://www.avanderlee.com/swiftui/voiceover-navigation-improvement-tips/
SwiftLee
VoiceOver navigation improvement tips for SwiftUI apps
Improving VoiceOver navigation support is an essential part of making your apps more accessible. A few tips can help you improve quickly.
iOS dev
https://artandscienceofcoding.com/science/kmm-for-ios-engineers/
art and science of coding
The iOS Engineer’s Guide to Beginning Kotlin Multiplatform Development
Techniques for Sharing Code using Kotlin Multiplatform
iOS dev
https://developer.apple.com/news/?id=3ne3586t
Apple
Get ready for iOS 16, tvOS 16, and watchOS 9 - Discover - Apple Developer
Now that you’ve watched September's Apple Event, get ready for the release of iOS 16, tvOS 16, and watchOS 9.
iOS dev
https://trycombine.com/posts/introducing-markcodable/
try Code
Introducing MarkCodable
Swift development related blog-posts. Combine, modern concurrency model, Instruments, and more.
iOS dev
https://sarunw.com/posts/how-to-add-button-to-navigation-bar-in-swiftui/
Sarunw
How to add button to navigation bar in SwiftUI | Sarunw
Learn how to add navigation bar buttons in SwiftUI.
iOS dev
https://sarunw.com/posts/sf-font-width-styles/
Sarunw
SF Font Expanded, Condensed, and Compressed: Three New font width styles in iOS 16 | Sarunw
In iOS 16, Apple introduces three new width styles to the SF font family. Let's see what they look like and how to use them.
iOS dev
https://swiftwithmajid.com/2022/09/07/customizing-toolbars-in-swiftui/
Swift with Majid
Customizing toolbars in SwiftUI
Toolbars API is one of my favorite APIs in SwiftUI. It allows you to define the toolbar and its items in a very declarative way behaving differently on separate platforms. The next generation of the SwiftUI framework brings us more ways of customizing toolbars.…
iOS dev
https://medium.com/@ConnectCode/from-chaining-and-blending-to-digital-compositing-core-image-cifilter-62c308277865
Medium
From chaining and blending to digital compositing Core Image CIFilter
Core Image is a powerful iOS framework that makes hardware-accelerated image manipulation easy. Oftentimes, as developers, we use it to add…
iOS dev
https://holyswift.app/exploring-swiftui-redraw-behavior-with-instruments/
Holy Swift
Exploring SwiftUI Redraw Behavior with Instruments - Holy Swift
Check with a simple app the optimization to don't SwiftUI redraw view than it is needed. Learn to pass data around safely in SwiftUI.
iOS dev
https://holyswift.app/linked-list-problem-add-two-numbers-in-swift/
Holy Swift
Linked List Problem - Add Two Numbers in Swift - Holy Swift
Check the solution for the Leetcode problem called Add Two Numbers in Swift. Start your linked list Swift algorithm studying today!