iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.09K
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://www.swiftjectivec.com/ios-14-notable-uikit-additions/
Swiftjective-C
iOS 14: Notable UIKit Additions
If you thought UIKit was getting pushed to the side with the rise of SwiftUI, you were wrong. There's a lot that's new, improved or revamped - let's take a look.
iOS dev
https://www.raywenderlich.com/10521463-server-side-swift-with-mongodb-getting-started
kodeco.com
Server-Side Swift with MongoDB: Getting Started
In this Server-Side Swift tutorial you will learn how to setup MongoDB and use MongoKitten to run basic queries, build Aggregate Pipelines and store files with GridFS.
iOS dev
https://steipete.com/posts/building-with-swift-trunk/
steipete’s blog
Building with Swift Trunk Development Snapshots
I recently started the adventure of building PSPDFKit with the Swift trunk development snapshot. I did this both in order to verify a fix for the SR-12933 LLDB debugging issue and to be better prepared for the Xcode 12 release at WWDC.
iOS dev
https://medium.com/flawless-app-stories/to-the-depth-of-objc-and-dynamic-in-swift-b5472800b85d
Medium
To the depth of @objc and dynamic in Swift
You must have come across @objc and dynamic keyword while coding in Swift. Compiler gives error if you are not using @objc when it is…
iOS dev
https://blog.apptekstudios.com/2020/06/scaledmetric-on-ios-13/
@ScaledMetric
on iOS 13
iOS dev
https://zonneveld.dev/ios-14-widgetkit/
Jeroen Zonneveld
WidgetKit: Create widgets with SwiftUI for iOS 14
WidgetKit is a framework for Apple platforms, that allows you to create widgets for iOS, iPadOS and macOS. Widgets needs to be written in Swift and SwiftUI.
iOS dev
http://www.figure.ink/blog/2020/6/24/debugging-generics-in-swift
figure.ink
Figure - Debugging Generics in Swift
A friend of mine was having a problem with a generic function they’d written. I’ve simplified it quite a bit to post, but the essence was:
func foo<T>(_ n: T) -> T where T: Numeric { return n * (4 as! T) } They could call it with an Int just fine, but when…
iOS dev
https://www.andyibanez.com/posts/uimenu-improvements-ios14/
Andy Ibanez - iOS Developer
UIMenu Improvements in iOS 14
Learn about new improvements introduced to the UIMenu APIs starting on iOS/iPadOS 14
iOS dev
https://www.swiftbysundell.com/articles/learning-swiftui-by-building-tools-and-prototypes/
Swift by Sundell
Learning SwiftUI by building tools and prototypes | Swift by Sundell
Let’s take a look at one possible venue for learning and exploring SwiftUI without having to necessarily deploy it directly into production — by building internal tools and various prototypes.
iOS dev
https://medium.com/@oliverbinns/create-a-tube-status-home-screen-widget-for-ios-14-7f25f7a0a7e1
Medium
Create a Tube Status home-screen Widget for iOS 14
One of iOS 14’s most exciting changes for both users and developers will undoubtedly be it’s addition of widgets for quick access to…
iOS dev
https://www.hackingwithswift.com/articles/222/wwdc20-wrap-up-and-recommended-talks
Hacking with Swift
WWDC20: Wrap up and recommended talks
Packed Sessions, hands-on labs, and a look forward to next year
iOS dev
https://machinethink.net/blog/new-in-apple-machine-learning-2020/
machinethink.net
Apple machine learning in 2020: What’s new?
A look at what has changed in Apple’s machine learning APIs for iOS and macOS
iOS dev
https://oleb.net/2020/as/?utm_campaign=iOS%2BDev%2BWeekly
oleb.net
as, as?, and as! – Ole Begemann
The <code>as</code> and <code>as?</code> operators in Swift are more different than their similar names suggest.
iOS dev
https://swiftwithmajid.com/2020/07/02/the-difference-between-stateobject-environmentobject-and-observedobject-in-swiftui/
Swift with Majid
The difference between @StateObject, @EnvironmentObject, and @ObservedObject in SwiftUI
This week I decided to share as much as I can about data flow in SwiftUI. In this post, we will discuss the difference between @StateObject, @EnvironmentObject, and @ObservedObject property wrappers. I know that this is the most confusing topic in SwiftUI…
iOS dev
https://www.fivestars.blog/code/optional-binding.html
FIVE STARS
How to add optional @Bindings to SwiftUI views | FIVE STARS
Exploring iOS, SwiftUI & much more.
iOS dev
https://swiftsenpai.com/swift/group-array-elements-with-dictionary/
Swift Senpai
Grouping Array Elements With Dictionary in Swift - Swift Senpai
Learn how to leverage the new Dictionary.init(grouping:by:) initializer to group array elements into a dictionary with just 1 line of code.
iOS dev
https://sarunw.com/posts/a-first-look-at-matchedgeometryeffect/
Sarunw
A first look at matchedGeometryEffect | Sarunw
This modifier can interpolate position and size between two views. This is one of the most exciting features for me. Let's see what is capable of in this beta.
iOS dev
https://www.chimehq.com/blog/metrickit-crash-reporting
Crash Reporting with MetricKit
iOS dev
https://medium.com/swlh/10-code-snippets-from-wwdc20-5dba158e2903
Medium
10 Code Snippets from WWDC20
A list of 10 useful Swift code snippets and changes coming with new iOS 14 and iPadOS 14 SDKs presented during Apple WWDC 2020.
iOS dev
https://www.donnywals.com/implementing-an-infinite-scrolling-list-with-swiftui-and-combine/
Donny Wals
Implementing an infinite scrolling list with SwiftUI and Combine
Learn how to use SwiftUI’s onAppear and Combine to build a List that scrolls forever. As a bonus, you’ll also see how you can achieve the same with a LazyVStack.