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://developer.apple.com/documentation/uikit/views_and_controls/collection_views/layouts
Arrange your collection view content in a highly configurable layout.
iOS dev
https://thoughtbot.com/blog/combine-diffable-data-source
thoughtbot
Combine + Diffable Data Source
Let’s explore two powerful native frameworks.
iOS dev
https://www.vadimbulavin.com/how-to-move-swiftui-view-when-keyboard-covers-text-field/
Yet Another Swift Blog
Keyboard Avoidance for SwiftUI Views
Learn how to manage a SwiftUI view when keyboard appears. We'll implement a SwiftUI ViewModifier that moves the view up and down when the iOS system keyboard covers a text field.
iOS dev
https://swiftwithmajid.com/2020/04/01/drag-and-drop-in-swiftui/
Swift with Majid
Drag and drop in SwiftUI
Another iPadOS feature released in SwiftUI with Xcode 11.4 was the drag and drop. Finally, we can use drag and drop API not only with UIKit but also with SwiftUI. This week we will learn all about drag and drop interactions in SwiftUI.
iOS dev
https://bryce.co/main-thread-checker-configuration/
bryce.co
Configuring the Main Thread Checker
Make the Main Thread Checker work better for your project.
iOS dev
https://www.fivestars.blog/code/swift-subcommands-galore.html
FIVE STARS
How To Add Extra Commands To CLI Tools | FIVE STARS
Exploring iOS, SwiftUI & much more.
iOS dev
https://sarunw.com/posts/tintcolor-in-swiftui/
Sarunw
tintColor in SwiftUI | Sarunw
We will talk about accentColor, a tintColor equivalent in SwiftUI.
iOS dev
https://www.pullrequest.com/blog/most-common-ios-app-issues-code-review/
PullRequest
The Most Common Issues I've Caught Reviewing iOS Apps
HackerOne Code is a developer-first code security platform, built for teams of all sizes. Thousands of on-demand vetted, expert engineers and backed by AI.
iOS dev
https://www.swiftbysundell.com/articles/swiftui-layout-system-guide-part-3/
Swift by Sundell
A guide to the SwiftUI layout system - Part 3 | Swift by Sundell
This week, we’ll wrap up the SwiftUI layout system series by taking a look at how we can customize the layout behaviors of our views, using tools like layout priorities and alignment guides.
iOS dev
https://theswiftdev.com/a-generic-crud-solution-for-vapor-4/
Theswiftdev
A generic CRUD solution for Vapor 4 - The.Swift.Dev.
Learn how to build a controller component that can serve models as JSON objects through a RESTful API written in Swift.
iOS dev
https://medium.com/better-programming/creating-and-managing-colors-in-swiftui-4c3a85f557ff
Medium
Creating and Managing Colors in SwiftUI
Making iOS development more beautiful
iOS dev
https://www.userdesk.io/blog/continuous-delivery-for-i-os-applications-using-jenkins-and-fastlane/
iOS dev
https://telegra.ph/Generics-Design-Patterns-03-31
Telegraph
Generics Design Patterns
You can make common Design Patterns more powerful, if you combine them with Generics. MVC
iOS dev
https://medium.com/better-programming/how-to-screenshot-your-ios-apps-ui-in-swift-5c054a9226a5
Medium
How to Screenshot Your iOS App’s UI in Swift
And save the resulting image to the photo gallery
iOS dev
https://www.revenuecat.com/blog/the-ultimate-guide-to-subscription-testing-on-ios
Revenuecat
iOS testing for subscription apps: the ultimate guide
This guide to iOS testing will help you find and fix bugs so you don't lose money due to issues in your subscription code.
iOS dev
https://medium.com/better-programming/create-an-apple-health-api-with-shortcuts-and-firebase-a76d178319b7
Medium
Create an Apple Health API With Shortcuts and Firebase
Learn how to create a personal Apple Health API for yourself
iOS dev
https://www.avanderlee.com/swift/custom-subscripts/
SwiftLee
Custom subscripts in Swift explained with code examples
Custom subscripts on classes, structs, or enumerations allow you to define shortcuts to collections or sequences without exposing implementation details.
iOS dev
https://www.hackingwithswift.com/articles/214/essential-apps-for-ios-developers
Hacking with Swift
8 essential apps for iOS developers
Make iOS and macOS do more work for you
iOS dev
https://tryolabs.com/blog/2020/04/02/swift-googles-bet-on-differentiable-programming/
Tryolabs
Swift: Google's bet on differentiable programming
Google's plans on making Swift the first mainstream language with first-class language-integrated differentiable programming capabilities. What's so cool about Swift?
iOS dev
https://www.donnywals.com/using-closures-to-initialize-properties-in-swift/
Donny Wals
Using Closures to initialize properties in Swift – Donny Wals
Closures are a powerful language feature of Swift. Learn how you can use them to assign values to your properties in this Quick Tip.
iOS dev
https://swiftwithmajid.com/2020/04/08/binding-in-swiftui/
Swift with Majid
Binding in SwiftUI
Binding is one of the several property wrappers that SwiftUI presents us to control data flow in the app. Binding provides us a reference like access to a value type. This week we will understand how and when to use binding. We will learn how to avoid common…