Abdulaziz Alobaili

Results 29 comments of Abdulaziz Alobaili

@MaxDesiatov I'm interested in how SwiftUI-like alerts can be implemented in a web browser context and would love to know your general thought on how would this problem be approached....

> There's also the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog) element, but it has poor browser support atm. This seems to be the best match and is more flexible to customize. Thank you for letting...

According to the latest documentation, the `Alert` structure is deprecated, and replaced with new presentation modifiers on `View`: ```swift extension View { public func alert(_ title: S, isPresented: Binding, @ViewBuilder...

Hello @cshadek, @paulofaria and @adam-fowler For organization, I think this issue should be reopened and linked to https://github.com/GraphQLSwift/Graphiti/pull/71 It appears that support for async/await is a big undertaking. I really...

I'm also facing this issue. In my case, I'm just reloading a cell like this: ```swift DispatchQueue.main.async { self.tableView.beginUpdates() self.tableView.reloadRows(at: [IndexPath(row: 0, section: 0)], with: .none) self.tableView.endUpdates() } ``` I'm...

Is there a way to prevent this method swizzling from happening? I suspect it's somehow the cause of this crash.

Update: This crash happened during App Store review and resulted in rejecting my app. I really hope it is investigated and fixed sooner than later.

@dzenbot I understand the risks. I just wanted to share my experience. Consider it feedback or bug report to help the creators investigate and improve. Best,

Here's a simple implementation I just used to add a Keyboard as a custom input view of a `UITextField`: ```swift class MyCustomKeyboardController: KeyboardInputViewController { override func viewDidLoad() { super.viewDidLoad() view.translatesAutoResizingMaskIntoConstraints...

Hello @JohnSundell, could you please review my PR? Thanks for your time and support.