Naoki Hiroshima
Naoki Hiroshima
Since Swift doesn't support the functionality of @dynamic except for Core Data (i.e. @NSManaged), you need to implement it in ObjC like NSUserDefaults+Example.[hm] does and import the header file via...
I'm using `ViewHosting.view(myView.environmentObject(appState))` and "async inspection", and it appears to have solved my problem on my laptop but it still 100% crashes on CI (GitHub Action & Xcode Cloud). Hopefully...
@petea did you see [Oliver-Binns](https://github.com/Oliver-Binns)'s https://github.com/openid/AppAuth-iOS/pull/661#issuecomment-977207559? Surely, #690 is better than nothing, but it'll only work until it'll break soon.
@atsu0127 you just have to wait until it's set. ```swift final class TestAppTests: XCTestCase { @MainActor func testSample() throws { let startCount = "0" let incCount = "3" var sut...
@nalexn can you release #308 as `0.9.12` so that we can use Xcode 16 to build ViewInspector, please? Since `0.10.0` is a breaking change and will require a lot of...
With `0.10.0`, the code below no longer builds, whether Xcode 15.4 or 16.0. And we use this pattern a lot. ```swift func test_foo() async { // Note: `async` let sut...
Okay, just tried patching #308 on `9.11.0` and confirmed it now successfully builds with Xcode 16. Nice. However, because of the known issue (random `AnyView()`), I saw hundreds of errors...
@Ecarrion what issue? I see no issue in the building with Xcode 16 (16A242d) using `branch 0.10.0` at all.
@nalexn since it depends on the SDK version, not the compiler version, the check should be `#if canImport(Swift, _version: 6.0)`, instead.
BTW, I have a view that requires to go with `try view.inspect().anyView().anyView().anyView().anyView().vStack()` while it is fine with `view.inspect().vStack()` on Xcode 15. So, I feel I just have to use `find()`...