#swiftconcurrency نتائج البحث

Today I learned that Swift Concurrency weighs about 7MB and has its own place inside the IPA we ship. #swift #swiftconcurrency

serjpetrachkov's tweet image. Today I learned that Swift Concurrency weighs about 7MB and has its own place inside the IPA we ship. #swift #swiftconcurrency

New post: Migrate from GCD to Swift Concurrency - Mapping table (GCD → async/await, actors, TaskGroup) - Before/After code for URLSession, caches, UI - Prod tips: MainActor, Sendable, cancellation Read: medium.com/@anubhavgiri01… #Swift #iOS #SwiftConcurrency #GCD #AsyncAwait


Was revisiting WWDC sessions on Swift concurrency and just couldn't help... #Swift #SwiftConcurrency #WWDC


I felt like @Apple wasn't very clear on how to run concurrent code on another thread using async/await. For those of you wondering, this is how: #Swift #SwiftConcurrency #Concurrency #WWDC21 #Apple #iosdev

Xaxxus's tweet image. I felt like @Apple wasn't very clear on how to run concurrent code on another thread using async/await. For those of you wondering, this is how:

#Swift #SwiftConcurrency #Concurrency #WWDC21 #Apple #iosdev

#SwiftConcurrency viewDidLoadとかはasyncつけれないから直接async関数を呼べない んでTaskか、Task.detachedブロックで呼ばないといけないけど、Task.detachedだとasyncじゃない関数にもawait指定が必要になっちゃう なんで?、の答え これ、ググると答え見つけるの大変だよなぁGPT様ありがてぇ

atagon's tweet image. #SwiftConcurrency

viewDidLoadとかはasyncつけれないから直接async関数を呼べない

んでTaskか、Task.detachedブロックで呼ばないといけないけど、Task.detachedだとasyncじゃない関数にもawait指定が必要になっちゃう

なんで?、の答え

これ、ググると答え見つけるの大変だよなぁGPT様ありがてぇ

Cut your network trips with a lightweight async/await Swift cache! Configure in two lines, fetch any binary blob, and let disk caching handle the rest. Repo: github.com/bsjurs1/FileCa… #SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

bsjurs1's tweet image. Cut your network trips with a lightweight async/await Swift cache!

Configure in two lines, fetch any binary blob, and let disk caching handle the rest.

Repo: github.com/bsjurs1/FileCa…
#SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

I have 3rd party lib that exposes API with completion handlers that in some scenarios never be called. So I came up with a Timer workaround to not leak continuation while using withCheckedContinuation. #SwiftConcurrency #Swift #iosdev

jurasic_str's tweet image. I have 3rd party lib that exposes API with completion handlers that in some scenarios never be called. So I came up with a Timer workaround to not leak continuation while using withCheckedContinuation. #SwiftConcurrency #Swift #iosdev

Inside task 'a', I let it sleep for 3s and that task was cancelled during its sleep time so it should throw an exception, but it didn't. What's happening here. Can someone explain? #iosdev #swift #swiftconcurrency

KyawTheMonkey's tweet image. Inside task 'a', I let it sleep for 3s and that task was cancelled during its sleep time so it should throw an exception, but it didn't. What's happening here. Can someone explain?

#iosdev #swift #swiftconcurrency

Swift Concurrency: Advanced Patterns & Performance • AsyncSequence • Concurrency vs GCD (decision guide) • Profiling & testing (Instruments, TSan) • Production tactics: cancellation, backpressure, resilience Read: anubhavgiri01.medium.com/concurrency-in… #Swift #iOS #SwiftConcurrency


I received a #Swift project with a lot of callback hell blocks, where completion handlers were wrapped into another 3 or more times. I decided to refactor with #SwiftConcurrency: withCheckedThrowingContinuation. Does anyone found issues with using it? I do, see the thread below:

jurasic_str's tweet image. I received a #Swift project with a lot of callback hell blocks, where completion handlers were wrapped into another 3 or more times. I decided to refactor with #SwiftConcurrency: withCheckedThrowingContinuation. Does anyone found issues with using it? I do, see the thread below:

So both "async let" and "task group" doesn't run tasks in the same order that they are added 🤔 #swift #swiftconcurrency

hlungx's tweet image. So both "async let" and "task group" doesn't run tasks in the same order that they are added 🤔 
#swift #swiftconcurrency
hlungx's tweet image. So both "async let" and "task group" doesn't run tasks in the same order that they are added 🤔 
#swift #swiftconcurrency

Hello all @RxSwiftLang people 🤔 #SwiftAsyncAwait #Swift #SwiftConcurrency Really waiting for AsyncStream to be ready :)

freak4pc's tweet image. Hello all @RxSwiftLang people 🤔 #SwiftAsyncAwait #Swift #SwiftConcurrency 

Really waiting for AsyncStream to be ready :)

Swiftここ最近離れてたから Concurrencyについてけてないんだけど この辺よんどけばある程度大丈夫かな?? それともだいぶアップデートとかされてるのかな?🤨 #Swift #SwiftConcurrency

ma12441469's tweet image. Swiftここ最近離れてたから
Concurrencyについてけてないんだけど
この辺よんどけばある程度大丈夫かな??
それともだいぶアップデートとかされてるのかな?🤨
#Swift
#SwiftConcurrency

I believe I must be missing something, but I just have too little experience with #SwiftConcurrency, I guess. 😔 #BuildInPublic #IndieHacker #iOSDev #IndieDev


#SwiftConcurrency 試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻 驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ わざわざ命名し直さなくてもいい👌 一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔

Harx02663971's tweet image. #SwiftConcurrency

試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻

驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ
わざわざ命名し直さなくてもいい👌
一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔
Harx02663971's tweet image. #SwiftConcurrency

試しに個人開発のコードで試してみたらすごく簡単にできた👍🏻

驚いたのは、関数名が一緒でもasyncつければ別物と認識してくれるところ
わざわざ命名し直さなくてもいい👌
一気に直さないでも徐々に入れ替えもできるように配慮されてるのね🤔

New post: Migrate from GCD to Swift Concurrency - Mapping table (GCD → async/await, actors, TaskGroup) - Before/After code for URLSession, caches, UI - Prod tips: MainActor, Sendable, cancellation Read: medium.com/@anubhavgiri01… #Swift #iOS #SwiftConcurrency #GCD #AsyncAwait


Swift Concurrency: Advanced Patterns & Performance • AsyncSequence • Concurrency vs GCD (decision guide) • Profiling & testing (Instruments, TSan) • Production tactics: cancellation, backpressure, resilience Read: anubhavgiri01.medium.com/concurrency-in… #Swift #iOS #SwiftConcurrency


🚀 New Video Live! Learn how to make Multiple API Calls in Swift using Async/Await the clean & modern way ✅ No nested callbacks. No complexity. Watch now 👉 youtu.be/Rjp_6yyZsnc #Swift #AsyncAwait #SwiftConcurrency #iOSDevelopment #SwiftDeveloper #iOS

Aashish6's tweet card. API Calls with Async/Await in Swift | Multiple API Requests Tutorial

youtube.com

YouTube

API Calls with Async/Await in Swift | Multiple API Requests Tutorial


Better Way to Call Multiple APIs in Swift! Swift Concurrency + Combine 🎥 youtu.be/t7LExxFxNfY ✅ Parallel + Dependent calls ✅ Live coding ✅ Clean networking layer #Swift #Combine #SwiftConcurrency #iOSDev #iOS #xcode #iosdevelopers #macosdev

Aashish6's tweet card. Better Way to Call Multiple APIs in Swift! Swift Concurrency for...

youtube.com

YouTube

Better Way to Call Multiple APIs in Swift! Swift Concurrency for...


I believe I must be missing something, but I just have too little experience with #SwiftConcurrency, I guess. 😔 #BuildInPublic #IndieHacker #iOSDev #IndieDev


Cut your network trips with a lightweight async/await Swift cache! Configure in two lines, fetch any binary blob, and let disk caching handle the rest. Repo: github.com/bsjurs1/FileCa… #SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

bsjurs1's tweet image. Cut your network trips with a lightweight async/await Swift cache!

Configure in two lines, fetch any binary blob, and let disk caching handle the rest.

Repo: github.com/bsjurs1/FileCa…
#SwiftLang #iOSDev #SwiftConcurrency #AsyncAwait

TCAのEffect、結局のところStoreTaskのBuilder + Swift Task制御レイヤーを抽象化したものが本質では? 🤔 #TCA #Effect #SwiftConcurrency


🧩 Swift 6 并发关键字傻傻分不清? 本文将梳理 Sendable、@unchecked Sendable、@Sendable、sending 和 nonsending 的区别与使用场景。 一张表格看懂所有区别 📊 👉 fatbobman.com/zh/posts/senda… #Swift #iOSDev #SwiftConcurrency


🧩 Confused by Swift 6 concurrency keywords? New article breaks down Sendable, `@unchecked Sendable`, `@Sendable`, sending, and nonsending - their differences and use cases. One table to understand them all 📊 👉 fatbobman.com/en/posts/senda… #Swift #iOSDev #SwiftConcurrency


Swift 6 turned my Sendable warnings into compiler errors and I'm not mad about it 😤 Turns out ignoring concurrency safety wasn't a sustainable strategy. Who knew? 🤷‍♂️ Wrote down everything I wish I knew about Sendable swift-pal.com/understanding-… #Swift #iOS #SwiftConcurrency

swift-pal.com

Understanding @Sendable: Swift 6 Changes, Interview Prep, and Real Examples

Master @Sendable protocol: value types, actors, generics, and the interview questions that stump developers


Swift Concurrency Reimagined— modern power for every Swift developer. 👉 A deep dive: youtu.be/yPV62lwT398 #Swift #iOSDev #SwiftConcurrency

iosDev_ramit's tweet image. Swift Concurrency Reimagined— modern power for every Swift developer.

👉 A deep dive: youtu.be/yPV62lwT398

#Swift #iOSDev #SwiftConcurrency

仕事の方のアプリで #Swift6 対応がやっとビルド通った。#SwiftConcurrency 風にリライトしながらだったので、#テスト しっかりしないとね。 ただ、持続可能なアプリにできればなぁとは考える次第。


📣 #iOSDev PSA: new #Xcode26 projects default to Main Actor isolation, which leads to errors with Sendable types ⚠️ Fixes: 1: Change default isolation 2: Mark type nonisolated 3: Ignore #SwiftConcurrency 🫣 Matt has a great post on default isolation: massicotte.org/default-isolat…

manuel_kehl's tweet image. 📣 #iOSDev PSA: new #Xcode26 projects default to Main Actor isolation, which leads to errors with Sendable types ⚠️
 
Fixes:
1: Change default isolation
2: Mark type nonisolated
3: Ignore #SwiftConcurrency 🫣

Matt has a great post on default isolation: massicotte.org/default-isolat…
manuel_kehl's tweet image. 📣 #iOSDev PSA: new #Xcode26 projects default to Main Actor isolation, which leads to errors with Sendable types ⚠️
 
Fixes:
1: Change default isolation
2: Mark type nonisolated
3: Ignore #SwiftConcurrency 🫣

Matt has a great post on default isolation: massicotte.org/default-isolat…
manuel_kehl's tweet image. 📣 #iOSDev PSA: new #Xcode26 projects default to Main Actor isolation, which leads to errors with Sendable types ⚠️
 
Fixes:
1: Change default isolation
2: Mark type nonisolated
3: Ignore #SwiftConcurrency 🫣

Matt has a great post on default isolation: massicotte.org/default-isolat…

Don’t miss “What’s New in Swift Concurrency” with Matt Massicotte at the One More Thing Conference—this Tuesday at 10 AM! Register now: buff.ly/5rdbRWU #SwiftConcurrency #Swift #OMTConf

omt_conf's tweet image. Don’t miss “What’s New in Swift Concurrency” with Matt Massicotte at the One More Thing Conference—this Tuesday at 10 AM! Register now: buff.ly/5rdbRWU

#SwiftConcurrency #Swift #OMTConf

Modern Swift Concurrency simplifies asynchronous programming with async/await and structured concurrency. It lets you write cleaner, safer code by naturally handling tasks, errors, and cancellations while boosting app responsiveness. #Swift #SwiftConcurrency

derekcoder_'s tweet image. Modern Swift Concurrency simplifies asynchronous programming with async/await and structured concurrency. It lets you write cleaner, safer code by naturally handling tasks, errors, and cancellations while boosting app responsiveness. #Swift #SwiftConcurrency

لا توجد نتائج لـ "#swiftconcurrency"
لا توجد نتائج لـ "#swiftconcurrency"
Loading...

Something went wrong.


Something went wrong.


United States Trends