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://itnext.io/apple-maps-url-schemes-e1d3ac7340af
Medium
Apple Maps URL Schemes
In this article I will explain to you the Apple Maps URL Schemes and show you, how to use them.
iOS dev
https://medium.com/@karinprater/how-to-make-navigation-in-swiftui-a-piece-of-cake-223b2a40c6c1
Medium
How to make Navigation in SwiftUI a piece of cake
If you are used to functional programming with UIKit, it takes some time to wrap your head around SwiftUI. This is especially true for…
iOS dev
https://medium.com/better-programming/geometryeffect-in-swift-2-0-6a7b2fbdb134
Medium
GeometryEffect in Swift 2.0
Getting to know the new GeometryEffect
iOS dev
https://medium.com/better-programming/the-swiftui-toolbar-in-ios-14-b4a0fe6a3034
Medium
The SwiftUI Toolbar in iOS 14
Let’s look at the new modifier to smartly place views in our layout
iOS dev
https://www.swiftbysundell.com/articles/rendering-textured-views-with-swiftui/
Swift by Sundell
Rendering textured views with SwiftUI | Swift by Sundell
Tips on how to texture SwiftUI views using tiling images, and how to ensure that such views are rendered in a smooth and predictable manner.
iOS dev
https://ashishkakkad.com/2020/07/xcode-12-whats-new-in-ios-simulator/
Ashish Kakkad
Xcode 12 - What's new in iOS Simulator? - Ashish Kakkad
Xcode 12 comes with great changes in the iOS Simulator. Check this blog to explore the updates which came in Xcode 12 beta.
iOS dev
https://benoitpasquier.com/atomic-properties-thread-safe-data-structure-swift/
Benoit Pasquier
Atomic properties and Thread-safe data structure in Swift
A recurring challenge in programming is accessing a shared resource concurrently. How to make sure the code doesn’t behave differently when multiple thread or operations tries to access the same property. In short, how to protect from a race condition?
iOS dev
https://medium.com/@KaneCheshire/swift-package-manager-is-a-security-risk-4d13f3a7bc3b
Medium
Swift Package Manager is a potential security risk
Let me start off by saying I absolutely love Swift Package Manager and I think it’s the future of dependency management on iOS, so-much-so…
iOS dev
https://noahgilmore.com/blog/xcode-shared-test-target/
Noahgilmore
Creating a shared unit test utils library with Xcode
I've been talking a fair amount recently about how I've been writing a lot of unit tests for Fluency, my Confluence editor app, and how much I value having good tests to catch regressions and verify that the editor is actually working correctly. In the case…
iOS dev
https://harshil.net/blog/swift-sequence-collection-array
Harshil Shah
Swiftʼs Collection Types
Sequence, Collection, Array, and everything in between.
iOS dev
https://www.avanderlee.com/swift/uibutton-uicontrol-closure-target
SwiftLee
Adding a closure as a target to UIButton and other controls in Swift
Learn how to use closures with a UIButton, UISwitch, UITextField, and other user interface elements with Swift APIs and without 3rd party dependencies.
iOS dev
https://www.tanaschita.com/posts/20200801-plurals-localization-in-ios/
Tanaschita
Step-by-step guide for localizing plurals in iOS
Learn how to localize plurals for multiple languages in iOS by using the Localizable.stringsdict file
iOS dev
https://www.donnywals.com/fetching-objects-from-core-data-in-a-swiftui-project/
Donny Wals
Fetching objects from Core Data in a SwiftUI project – Donny Wals
When you've added Core Data to your SwiftUI project and you have some data stored in your database, the next hurdle is to somehow fetch that data from your Core Data store and present it to the user.
iOS dev
https://www.fivestars.blog/swiftui/app-scene-storage.html
FIVE STARS
Swift types with @AppStorage and @SceneStorage | FIVE STARS
Exploring iOS, SwiftUI & much more.
iOS dev
https://levelup.gitconnected.com/state-vs-stateobject-vs-observedobject-vs-environmentobject-in-swiftui-81e2913d63f9
Medium
SwiftUI: @State vs @StateObject vs @ObservedObject vs @EnvironmentObject
One of the first decisions SwiftUI developers need to make is which of the available property wrappers to use to store data. Especially in…
iOS dev
https://useyourloaf.com/blog/sharing-data-with-a-widget/
Use Your Loaf - iOS Development News & Tips
Sharing data with a Widget
How do you share data from your main app and an app extension like a widget?
iOS dev
https://swiftsenpai.com/development/uicollectionview-list-custom-cell/
Swift Senpai
UICollectionView List with Custom Cell and Custom Configuration
Learn how to use UICollectionViewListCell and UIContentConfiguration introduced in iOS 14 to create a list with custom cell in UICollectionView.
iOS dev
https://swiftwithmajid.com/2020/08/05/menus-in-swiftui/
Swift with Majid
Menus in SwiftUI
This week we got another Xcode Beta that brings menus into SwiftUI world. Menus are going to replace old action sheets that have been here since iOS 8. Action sheets don’t play well with huge screens that we have nowadays. This week we will learn how to use…
iOS dev
https://www.andyibanez.com/posts/common-reasons-background-tasks-fail-ios/
Andy Ibanez - iOS Developer
Common Reasons for Background Tasks to Fail in iOS
Learn what are the common reasons your background tasks never get executed, and how to go around them.
iOS dev
https://www.swiftbysundell.com/articles/deep-dive-into-swift-function-builders/
Swift by Sundell
A deep dive into Swift’s result builders | Swift by Sundell
A closer look at Swift’s result builders feature, and how it can give us some really valuable insights into how SwiftUI’s DSL operates under the hood.