Post

Replies

Boosts

Views

Activity

Comment on iOS 26 & Xcode 26 - bug with keyboard by WebView
@Kvadroman @MasonO So, I found workaround for that: class CleanWebView: WKWebView { override var inputAccessoryView: UIView? { return nil } } struct CustomWebView: UIViewRepresentable { let url: URL func makeUIView(context: Context) -> WKWebView { return CleanWebView() } func updateUIView(_ uiView: WKWebView, context: Context) { let request = URLRequest(url: url) uiView.load(request) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Feb ’26
Comment on Live Activity Does Not Appear on devices running iOS 17, built with Xcode 16
Fixed. In your target of extension, change Minimum deployments version ios 17
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’25
Comment on Xcode 26 beta 5 xcodebuild crash
Of course its sample :) In our project we have 20 Packages and every package have 50 targets apx. Total 1k. We attach every project to the Xcode workspace. Also here my crash report with sample project: FB19551898
Replies
Boosts
Views
Activity
Aug ’25
Comment on iOS 26 & Xcode 26 - bug with keyboard by WebView
I already do that: FB20386257
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’25
Comment on iOS 26 & Xcode 26 - bug with keyboard by WebView
@Kvadroman @MasonO So, I found workaround for that: class CleanWebView: WKWebView { override var inputAccessoryView: UIView? { return nil } } struct CustomWebView: UIViewRepresentable { let url: URL func makeUIView(context: Context) -> WKWebView { return CleanWebView() } func updateUIView(_ uiView: WKWebView, context: Context) { let request = URLRequest(url: url) uiView.load(request) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Feb ’26