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://github.com/twostraws/wwdc
GitHub
GitHub - twostraws/wwdc: WWDC Community: Learning and sharing together
WWDC Community: Learning and sharing together. Contribute to twostraws/wwdc development by creating an account on GitHub.
iOS dev
https://www.revenuecat.com/blog/storekit-testing-in-xcode
Revenuecat
StoreKit Testing Improvements in iOS 14
Configuring and testing In-app purchases is one of the most annoying, but most critical steps of building iOS apps. Apple just made the process a whole lot easier with fantastic new features announced at WWDC 2020!
iOS dev
https://swiftwithmajid.com/2020/06/23/what-is-new-in-swiftui/
Swift with Majid
What’s new in SwiftUI
I have been waiting for this day for the last nine months, and it has finally arrived. We saw the next iteration of the SwiftUI framework. Apple did a great job during the last year by improving SwiftUI and moving it towards by making it a standalone way…
iOS dev
https://swiftwithmajid.com/2020/06/29/new-property-wrappers-in-swiftui/
Swift with Majid
New property wrappers in SwiftUI
WWDC20 brought a lot of new features into SwiftUI that I will discuss on my blog during the next weeks. Today I would like to start with the main additions to SwiftUI data flow with the brand new @StateObject, @AppStorage, @SceneStorage, and @ScaledMetric…
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.