coobjc icon indicating copy to clipboard operation
coobjc copied to clipboard

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 Fo...

Results 29 coobjc issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** It's currently not possible to implement coroutine actors using the coswift library in Swift code. **Describe the solution you'd like**...

### Context and Description ### Environment Details * coobjc version: 1.2.0 * iOS version: iOS14.2 * Xcode version: xcode12.2 * Other informations: pod 'coobjc', '1.2.0' ### Expected behavior zip里面的cocore在coobjc里面,所以#import “”没问题,但是pod下来的cocore在另一个target里面,应该采取#import...

### Context and Description ### Environment Details * coobjc version:1.2.0 * iOS version:12 * Xcode version:10.2.1 * Other informations: ### Expected behavior ### Actual behavior import cocore header error in...

### Context and Description ### Environment Details * coobjc version: 1.2.6 * iOS version: 14 * Xcode version: 12.1 * Other informations: cocore/co_csp.h line 26 #include x 'cocore/coroutine.h' file not...

### 在协程里面使用JsContext会出现exception ### Environment Details * coobjc version:master * iOS version:ios12 * Xcode version:10 * Other informations: ### Steps to Reproduce ```objectivec co_launch(^{ JSContext *mJsContext = [[JSContext alloc] init]; mJsContext.exceptionHandler...

bug

堆栈 ![image](https://user-images.githubusercontent.com/10847925/58527500-7885e900-8205-11e9-9558-c43f97509fe0.png) 推测崩溃的代码行:coroutine.m:237

fix readme ### Summary Provide a general description of the code changes in your pull request... were there any bugs you had fixed? If so, mention them like 'fixes #x'....

![image](https://user-images.githubusercontent.com/15682437/58073204-96839600-7bd4-11e9-92bc-230353369022.png) 腾讯bugly后台检测到崩溃问题 ![image](https://user-images.githubusercontent.com/15682437/58073233-a7340c00-7bd4-11e9-8c7f-3f620b37a146.png)

bug

在微信公众号 淘宝技术 的coobjc宣传文章中提到 "淘宝app 在不改变原有业务代码的基础上,通过全局hook部分IO、数据解析方法,即可让原来在主线程中同步执行的IO方法异步执行,并且不影响原有的业务逻辑" 这个能稍微细说下怎样完全不动业务代码就能将同步逻辑改造成异步逻辑吗?