- Apple WWDC22 页面
- Apple WWDC22 指南
- Apple Developer app
- Session 网页版
- WWDC22 Sample Code 实例代码
- 下载 Xcode 14 beta
- WWDC Notes 汇聚了大家的 Session 笔记,可以快速看到各个 Session 的重点。
- Swiftly Rush WWDC22 这家伙是 raywenderlich.com 的演讲者 他的git: github.com/adamrushy?t…
- 🚀Platforms State of the Union 深入了解 Apple 平台上的最新工具、技术和进步,以帮助您创建更好的 app。
- WWWDC.io App 社区的看 Session 的 mac App。
- Apple Platform SDK API Differences 会列出新 SDK 里有哪些框架更新了。
- New Technologies WWDC22 Apple 整理的 WWDC22 上的新技术。
- iOS and iPadOS 16 release notes 系统接口更新说明,包括 SwiftUI 更新了啥。
- 🚀🚀🚀 Swift 5.7 更新语法 What’s new in Swift 5.7 , What’s the difference between any and some in Swift 5.7? 。 if let 展开选项的简写、多语句闭包类型推断、时钟、即时和持续时间、 正则表达式、SE-0347扩展了 Swift 使用泛型参数类型的默认值的能力、不透明的参数声明泛型函数新写法(some: )、 所有有Self要求的协议可以用any表示(any) 、分布式actor隔离、快速片段 //! // MARK: Hide和 // MARK: Show、从异步属性中不可用@available(*, noasync) 。。。。 Swift 5.7 是一个巨大的版本
- 🚀🚀 iOS Feeds 的 WWDC 2022 新闻聚合 很多session实例、技术点文章
- Link fast: Improve build and launch time 详细讲了 Apple 今年怎么改进了 link,思路很棒,很值得学习。Static linking 和 Dynamic linking ,也就是静态链接和动态链接。
- 🚀Xcode 14 新特性一览 mp.weixin.qq.com/s/NEbCHxfmU… stefanblos.com/posts/new-i…
- 🚀🚀🚀 Swift 5.7 中的 any 和 some 有什么区别? https://www.donnywals.com/whats-the-difference-between-any-and-some-in-swift-5-7/ ****泛型的示例不需要<T: Pizza>关键字。some应该优先使用泛型。any仅当any您确实想要使用存在或盒子类型时才应使用关键字,您需要在运行时查看盒子以查看里面的内容,以便您可以调用方法并访问其属性。some 比 any复杂(事实上确实如此),但它们也是 Swift 5.7 中非常强大和重要的部分。值得尝试同时理解它们,因为您将更好地理解 Swift 如何处理泛型和协议。掌握这些主题真的会让你的编码更上一层楼。
- 🚀🚀 UIKit iOS16 新功能 developer.apple.com/videos/play…
- 🚀🚀 SwiftUI iOS16 的新功能 Apple developer.apple.com/xcode/swift…
- 🚀🚀 SwiftUI iOS16 的新功能 社区 https://onmyway133.com/posts/whats-new-in-swiftui-ios-16-at-wwdc22/ ****https://www.youtube.com/watch?v=thT00pe9epg&list=PLimqJDzPI-H-ya9xGNc9apYfXS_IRsw3S ****Kavsoft代码演示swiftUI4.0,观感十分舒服
- 如何使用Live Text API nemecek.be/blog/160/ho…
- Meet distributed actors in Swift 也是比看的,Mike Ash 和 Doug Gregor 一年的心血就在这了。