iOS dev
@iosdevio
10.8K
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.8K subscribers
iOS dev
https://developer.apple.com/news/?id=3ne3586t
Apple
Get ready for iOS 16, tvOS 16, and watchOS 9 - Discover - Apple Developer
Now that you’ve watched September's Apple Event, get ready for the release of iOS 16, tvOS 16, and watchOS 9.
iOS dev
https://trycombine.com/posts/introducing-markcodable/
try Code
Introducing MarkCodable
Swift development related blog-posts. Combine, modern concurrency model, Instruments, and more.
iOS dev
https://sarunw.com/posts/how-to-add-button-to-navigation-bar-in-swiftui/
Sarunw
How to add button to navigation bar in SwiftUI | Sarunw
Learn how to add navigation bar buttons in SwiftUI.
iOS dev
https://sarunw.com/posts/sf-font-width-styles/
Sarunw
SF Font Expanded, Condensed, and Compressed: Three New font width styles in iOS 16 | Sarunw
In iOS 16, Apple introduces three new width styles to the SF font family. Let's see what they look like and how to use them.
iOS dev
https://swiftwithmajid.com/2022/09/07/customizing-toolbars-in-swiftui/
Swift with Majid
Customizing toolbars in SwiftUI
Toolbars API is one of my favorite APIs in SwiftUI. It allows you to define the toolbar and its items in a very declarative way behaving differently on separate platforms. The next generation of the SwiftUI framework brings us more ways of customizing toolbars.…
iOS dev
https://medium.com/@ConnectCode/from-chaining-and-blending-to-digital-compositing-core-image-cifilter-62c308277865
Medium
From chaining and blending to digital compositing Core Image CIFilter
Core Image is a powerful iOS framework that makes hardware-accelerated image manipulation easy. Oftentimes, as developers, we use it to add…
iOS dev
https://holyswift.app/exploring-swiftui-redraw-behavior-with-instruments/
Holy Swift
Exploring SwiftUI Redraw Behavior with Instruments - Holy Swift
Check with a simple app the optimization to don't SwiftUI redraw view than it is needed. Learn to pass data around safely in SwiftUI.
iOS dev
https://holyswift.app/linked-list-problem-add-two-numbers-in-swift/
Holy Swift
Linked List Problem - Add Two Numbers in Swift - Holy Swift
Check the solution for the Leetcode problem called Add Two Numbers in Swift. Start your linked list Swift algorithm studying today!
iOS dev
https://medium.com/geekculture/concurrency-in-ios-gcd-c3a69acd7f31
Medium
Concurrency in iOS: GCD
This would be my first article that talk about concurrency in iOS
iOS dev
https://useyourloaf.com/blog/getting-started-with-swift-regex/
Use Your Loaf
Getting Started with Swift Regex
Swift 5.7 brings a whole new way of working with regular expressions.
iOS dev
https://useyourloaf.com/blog/iphone-14-screen-sizes/
Use Your Loaf - iOS Development News & Tips
iPhone 14 Screen Sizes
The notch is being replaced by the dynamic island. Here's a recap of what's changed with the 2022 iPhone 14 screen sizes.
iOS dev
https://www.donnywals.com/xcode-14-publishing-changes-from-within-view-updates-is-not-allowed-this-will-cause-undefined-behavior/
Donny Wals
Xcode 14 “Publishing changes from within view updates is not allowed, this will cause undefined behavior”
Some of the SwiftUI code that I’ve been using fine for a long time now has recently started coming up with this purple warning. Initially I thought that there was a chance that I was, in fact…
iOS dev
https://www.avanderlee.com/swiftui/accessibility-uikit-developers/
SwiftLee
Accessibility in SwiftUI explained for UIKit developers
Accessibility in SwiftUI works a little different than in UIKit, but with a few tips you'll be able to get up to speed quickly.
iOS dev
https://swiftui-lab.com/layout-protocol-part-1/
iOS dev
https://swiftui-lab.com/layout-protocol-part-2/
iOS dev
https://swiftrocks.com/whats-any-understanding-type-erasure-in-swift
Swiftrocks
What's the 'any' keyword? Understanding Type Erasure in Swift
In this article, we'll explain the concept of type erasure, how it used to be done, what's different in Swift 5.7, and how these changes work under the hood.
iOS dev
https://www.hackingwithswift.com/articles/249/whats-new-in-swift-5-7
Hacking with Swift
What’s new in Swift 5.7
Or as I’ve started calling it, what isn’t new in Swift 5.7?
iOS dev
CN
iOS dev
https://juejin.cn/post/7143002835192381471#heading-0
juejin.cn
如何判断 ScrollView、List 是否正在滚动中 - 掘金
判断一个可滚动控件( ScrollView、List )是否处于滚动状态在某些场景下具有重要的作用。本文将介绍几种在 SwiftUI 中获取当前滚动状态的方法,每种方法都有各自的优势和局限性。
iOS dev
https://juejin.cn/post/7142656591139962888#heading-16
juejin.cn
你真的懂iOS的异常捕获吗? - 掘金
在开发的日常中,经常会遇到一些极其偶现的Bug,有些Bug很难以复现,所以一般的解决方案是接入PLCrashReporter这些第三方的崩溃统计工具,那么这些方案真的是最优解吗?