coobjc provides coroutine support for Objective-C and Swift. We added await method、generator and actor model like C#、Javascript and Kotlin. For convenience, we added coroutine categories for some Foundation and UIKit API in cokit framework like NSFileManager, JSON, NSData, UIImage etc. We also add tuple support in coobjc.
c
swift
ios
generator
objective-c
actor-model
asm
actor
await
arm64
objc
coroutine-library
coroutine
tuple
await-promises
-
Updated
Sep 26, 2021 - Objective-C
With TS 3.4 it became common practice to create tuples with
[a, b, c] as const
. This is really convenient, however the resulting tuple isreadonly
. It would be awesome to add support for these readonly tuples, right now I get errorreadonly (something) is not assignable to any[]
.