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://www.polpiella.dev/modularised-app-localisation
Localising a modularised application
www.polpiella.dev
Localising a modularised application
A few tips that work for me when I need to localise a modular application.
iOS dev
CN
iOS dev
https://dirtysalt.github.io/html/tcmalloc.html#org3c62c54
tcmalloc 源码解析
dirtysalt.github.io
tcmalloc
iOS dev
EN
❤
1
iOS dev
https://diggingdeveloper.blog/2022/08/03/til-lldb-po-strongly-captures-an-object-forever/
Digging Developer
TIL: lldb po strongly captures an object, forever
While investigating some memory leak issue, I found out that if I po an object before using Memory Graph, that object would stay in memory forever, and Memory Graph would show something like NSKeyV…
iOS dev
https://www.thealexanderlee.com/blog/how-do-3d-transforms-of-ios-views-work-under-the-hood
Alex Lee
How do 3D transforms of iOS views work under the hood? — Alex Lee
A look at how the CoreAnimation library works under the hood for 3D transformations: translations, rotations, and scales.
iOS dev
https://www.thealexanderlee.com/blog/3d-transforms-on-ios-under-the-hood-part-2-perspective-shifts
Alex Lee
3D transforms on iOS under the hood part II: Perspective shifts — Alex Lee
A look at how the CoreAnimation library works under the hood for 3D transformations, specifically how perspective shifts are calculated.
iOS dev
https://blog.willbish.com/2022/08/02/using-uipastecontrol-in-a-uimenu-in-ios-16/
iOS dev
https://swdevnotes.com/swift/2022/create-a-line-chart-with-swiftui-charts-in-ios-16/
Swdevnotes
Create a line chart with SwiftUI Charts in iOS 16
How to create a line chart with SwiftUI Charts in iOS 16
iOS dev
https://danielsaidi.com/blog/2022/08/08/getting-started-with-the-SwiftUI-navigation-split-view
Daniel Saidi
Getting started with the SwiftUI NavigationSplitView
SwiftUI 4 adds a new NavigationSplitView component that simplifies creating rich sidebar-based experiences on iPad and macOS, while scali...
iOS dev
https://www.polpiella.dev/advances-in-swift-package-access-control
www.polpiella.dev
Advances in Swift Package Manager's dependency access control
Taking a look at the latest Swift 5.7 development snapshot to try the new explicit-target-dependency-import-check flag, which provides improvements to the dependency system within SPM.
iOS dev
https://oleb.net/2022/live-activity/
Ole Begemann
Experimenting with Live Activities
Learnings from implementing my first iOS 16 Live Activity.
iOS dev
https://mtldoc.com/metal/2022/08/04/shaders-explained-gradients.html
Mtldoc
Shaders Explained: Gradients | MTLDoc
iOS dev
https://useyourloaf.com/blog/swiftui-gauges/
Use Your Loaf - iOS Development News & Tips
SwiftUI Gauges
SwiftUI gauge views come to iOS 16.
iOS dev
https://www.pointfree.co/episodes/ep200-async-composable-architecture-in-practice
www.pointfree.co
Episode #200: Async Composable Architecture in Practice
This week we are releasing the biggest update to the Composable Architecture since its first release over 2 years ago, bringing more of Swift’s modern concurrency tools to the library. To celebrate we will demonstrate how these tools can massively simplify…
iOS dev
http://swiftwithmajid.com/2022/08/02/content-transition-in-swiftui/
Swift with Majid
Content transition in SwiftUI
View transitions are available from the very first version of the SwiftUI framework. The framework can apply a particular transition whenever the view is removed or added to the view hierarchy. The latest iteration of the SwiftUI framework brings us a new…
iOS dev
https://www.avanderlee.com/swift/sendable-protocol-closures/
SwiftLee
Sendable and @Sendable closures explained with code examples
The Sendable protocol and @Sendable attribute help to eliminate data races and create thread-safety in Swift Concurrency.
iOS dev
https://holyswift.app/best-way-to-scan-texts-qr-codes-and-barcodes-in-swift
Holy Swift
How to Scan Texts, QR Codes, and Barcodes in Swift - Holy Swift
How to Scan Texts, QR Codes, and Barcodes in Swift using latest computer vision technologies with Xcode. Use iOS to read QR Codes.
iOS dev
https://nilcoalescing.com/blog/AdjustTheDirectionOfFocusBasedNavigation/
Nil Coalescing
Adjust the direction of focus-based navigation in SwiftUI
We can customize how the user navigates through focusable views in our macOS apps with the help of the new focusSection() modifier.
iOS dev
https://www.jessesquires.com/blog/2022/08/11/implementing-a-main-thread-watchdog-on-ios/
Jesse Squires
Implementing a main thread watchdog on iOS
On iOS the operating system employs a watchdog that monitors for and terminates unresponsive apps. If your app is blocking the main thread for too long, the ...