iOS dev
@iosdevio
10.9K
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.9K subscribers
iOS dev
https://holyswift.app/iteratively-reverse-linked-list-in-swift
Holy Swift
Iteratively Reverse Linked List in Swift - Holy Swift
Learn how to iteratively Reverse Linked List in Swift. Learn this reverse linked list data structure algorithm in Swift and iOS now!
iOS dev
https://www.swiftbysundell.com/articles/making-async-system-apis-backward-compatible/
Swift by Sundell
Making async system APIs backward compatible | Swift by Sundell
How to make it possible to use async system APIs on earlier operating system versions.
iOS dev
First issue with 10,000 subscribers
Thanks devs!
🍻
iOS dev
https://swiftwithmajid.com/2021/11/03/managing-safe-area-in-swiftui/
Swift with Majid
Managing safe area in SwiftUI
A safe area defines the area within a view that isn’t covered by a navigation bar, tab bar, toolbar, or other views. SwiftUI views respect safe areas out of the box. But there are plenty of situations when you need to customize this behavior. This week we…
iOS dev
https://antran.app/2021/github_copilot_swift
How to use Github Copilot with Swift using Visual Studio Code?
iOS dev
https://www.fivestars.blog/articles/custom-environment-values-cheatsheet/
FIVE STARS
Custom SwiftUI Environment Values Cheatsheet | FIVE STARS
A collection of the most common custom types we might define into the environment.
iOS dev
https://indiestack.com/2021/10/dangerous-logging-in-swift/
Indie Stack
Dangerous Logging in Swift
I recently came across a perplexing crash in my unit tests that led me down a path of discovery, culminating in an awareness that "I was holding it wrong" when it comes to using NSLog in Swift.Here is the source code to an extension on FileManager intended…
iOS dev
https://sarunw.com/posts/how-to-create-macos-app-without-storyboard/
Sarunw
How to create a macOS app without storyboard or xib files | Sarunw
macOS is tightly coupled with storyboard and xib than iOS. To build your UI entirely in code, we have to do some initial setup.
iOS dev
https://sarunw.com/posts/how-to-use-custom-fonts-in-wkwebview/
Sarunw
How to use custom fonts in WKWebView | Sarunw
Learn how to use local custom fonts that bundle with your application in WKWebView. It isn't hard, but not very obvious how to do it.
iOS dev
https://betterprogramming.pub/how-to-reverse-engineer-an-ios-app-313a95950aff
Medium
How To Inspect an iOS App
Use Xcode’s debugger
iOS dev
https://betterprogramming.pub/build-a-swift-snake-game-using-declarative-domain-paradigm-7eb34a139017
Medium
Build a Snake Game in Swift Using the Declarative Domain Paradigm
Immutable yet fun
iOS dev
https://www.kiloloco.com/articles/013-published-protocols-with-combine-on-ios/
Kilo Loco
Publishing Updates Using Protocols with Combine on iOS | Kilo Loco
Using @Published variables with protocols in Swift.
iOS dev
https://useyourloaf.com/blog/keyboard-layout-guide/
Use Your Loaf - iOS Development News & Tips
Keyboard Layout Guide
Apple introduced the keyboard layout guide in iOS 15. It can make it easier to build layouts that adapt to the keyboard.
iOS dev
https://useyourloaf.com/blog/accessibility-smart-invert/
Use Your Loaf - iOS Development News & Tips
Accessibility Smart Invert
What's the one accessibility feature, other than VoiceOver, you wish more developers knew about?
iOS dev
https://www.mongodb.com/developer/how-to/swiftui-previews/
Mongodb
Making SwiftUI Previews Work For You | MongoDB
Learn how to make SwiftUI previews to write better iOS apps faster
iOS dev
https://benoitpasquier.com/currency-textfield-in-swiftui/
Benoit Pasquier
Currency TextField in SwiftUI
Between banking and crypto apps, it’s quite often we interact with currency inputs on daily basis. If creating a localized UITextField can already be tricky in UIKit, I was wondering how hard it would be to do a similar one in SwiftUI. Let’s see today how…
iOS dev
https://serialcoder.dev/text-tutorials/swiftui/the-redacted-view-modifier-in-swiftui/
iOS dev
https://www.jessesquires.com/blog/2021/11/03/xcode-13-framework-test-fail/
Jesse Squires
Workaround: Xcode 13 failure after running framework project tests
I discovered a bug in Xcode 13 where tests crash for framework projects, preventing unit tests from successfully running on CI. The issue is due to some obsc...
iOS dev
https://www.jessesquires.com/blog/2021/11/03/swift-package-ios-tests/
Jesse Squires
How to test an iOS Swift package without an Xcode project
I came across a situation today where I needed to run an iOS test suite for a Swift Package. Previously, this required you to have an Xcode project but it no...
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.