iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.07K
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://rderik.com/blog/using-bsd-sockets-in-swift/
Using BSD Sockets in Swift
iOS dev
https://www.vadimbulavin.com/error-handling-in-swift-combine-framework/
Yet Another Swift Blog
Error Handling in Swift Combine Framework
Learn how to handle errors in Swift Combine Framework with this tutorial. We'll discuss how to use assertNoFailure, catch, replaceError, retry and mapError operators along with practical examples.
iOS dev
https://swiftandpizza.com/flux-in-swift/
Swift And Pizza
Flux pattern in Swift - Swift And Pizza
#Flux pattern in #Swift. An easy approach to a unidirectional data flow.
iOS dev
https://www.donnywals.com/supporting-low-data-mode-in-your-app/
Donny Wals
Supporting Low Data Mode in your app – Donny Wals
iOS 13 introduces Low Data Mode, a feature that helps users save data. In this blog post, I show you how to add support for Low Data Mode in your apps.
iOS dev
https://medium.com/get-chip/propert-wrappers-in-swift-5-1-14f610530710
Medium
Property Wrappers in Swift 5.1
An introduction to one of Swift 5.1’s powerful new features: Property Wrappers. We implement a property wrapper to improve a common pattern
iOS dev
https://swiftui-lab.com/advanced-transitions/
iOS dev
https://medium.com/better-programming/playing-with-combine-grid-layout-in-swiftui-42e652d6462e
Medium
Playing With Combine: Grid Layout in SwiftUI
A basic implementation of grid in SwiftUI using Combine
iOS dev
https://towardsdatascience.com/how-to-make-a-movie-reviews-sentiment-analyzer-in-swift-ab659fabaecf
Medium
How to Make a Movie Reviews Sentiment Analyzer in Swift
Use machine learning to predict users movies reviews sentiment
iOS dev
https://basememara.com/swift-dependency-injection-via-property-wrapper/
emara.io
Basem Emara
Building disruptive full-stack web and mobile apps at quality & scale
🚀
iOS dev
https://www.swiftbysundell.com/articles/computing-dates-in-swift/
Swift by Sundell
Computing dates in Swift | Swift by Sundell
Let’s take a look at Foundation’s date handling APIs — how they can enable us to easily make the way we compute dates more correct, and how we can build our own lightweight abstractions on top of them to make dealing with dates in Swift a lot easier.
iOS dev
https://www.swiftbysundell.com/tips/making-types-expressible-by-string-interpolation/
Swift by Sundell
Making types expressible by string interpolation | Swift by Sundell
How to enable a type to be expressed by strings that contain interpolated values.
iOS dev
https://swiftrocks.com/using-simd-vector-types-in-swift.html
Swiftrocks
Using SIMD Vector Types in Swift
SIMD Vector Types is a feature added in Swift 5 that allows you to calculate multiple results with a single instruction. Let's see how that works.
iOS dev
https://www.vadimbulavin.com/swift-memory-management-arc-strong-weak-and-unowned/
Yet Another Swift Blog
Advanced iOS Memory Management with Swift: ARC, Strong, Weak and Unowned Explained
Study advanced Swift memory management with this tutorial. We'll discuss how Swift compiler implements automatic reference counting (ARC), the mechanism of weak referencing with side tables, the life cycle of Swift objects and the difference between strong…
iOS dev
https://www.objc.io/blog/2019/10/01/swiftui-shake-animation/
www.objc.io
SwiftUI: Shake Animation
Shake it off, shake it off
iOS dev
https://mecid.github.io/2019/10/02/redux-like-state-container-in-swiftui-part3/
Majid’s
Redux-like state container in SwiftUI. Container Views.
This week I want to continue the topic of using a Redux-like state container in SwiftUI. I’m delighted with the new approach and already finished the refactoring of the NapBot app in this way. That’s why today I want to share with you how I use Container…
iOS dev
https://www.swiftbysundell.com/articles/alternatives-to-protocols-in-swift/
Swift by Sundell
Alternatives to protocols in Swift | Swift by Sundell
Protocols are, without a doubt, a major part of Swift’s overall design. However, they also come with their own set of downsides and trade-offs. This week, let’s take a look at some of those characteristics, and explore a few alternative ways of abstracting…
iOS dev
https://www.onswiftwings.com/posts/dark-mode/
OnSwiftWings
Backward compatible Dark Mode on iOS
Implementing backward compatible Dark Mode on iOS
iOS dev
https://www.youtube.com/watch?v=s112kzTQszU&feature=youtu.be
iOS dev
https://medium.com/flawless-app-stories/fast-app-prototyping-with-swiftui-39ae03ab3eaa
Medium
Fast app prototyping with SwiftUI
Let’s play around with SwiftUI and learning more about how it works on the WatchOS environment. And see how to create some sort of “wavy” animation.
iOS dev
https://benoitpasquier.com/common-mistakes-analytics-ios-app/
Benoit Pasquier
Analytics - How to avoid common mistakes in iOS
I have been interested in analytics tools for a while, especially when it’s applied to mobile development. Over the time, I saw many code mistakes when implementing an analytical solution. Some of them can be easily avoided when developer got the right insights…
iOS dev
https://www.iamsim.me/using-combine-to-supplement-delegates-with-publishers/?utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS%2BDev%2BWeekly%2BIssue%2B424
www.iamsim.me
Using Combine to Supplement Delegates With Publishers
Anyone who’s ever written an iOS app has come in contact with the delegate pattern. It’s a great pattern and fills an important role in iOS development.
However, sometimes when you’re writing your own custom classes it can feel like a bunch of boilerplate…