Does IOS support WebTransport yet?

Hi, wondering if IOS supports WebTransport (HTTP/3) yet?

If so, where can I find information on implementing it in my app?

Post not yet marked as solved Up vote post of yalihart Down vote post of yalihart
156 views

Replies

iOS has HTTP/3 support. Third-party developers access this via URLSession. However, your mention of WebTransport suggests that you’re looking for support within a web browser. Is that right?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Hi, I am looking to add the ability to receive and send data to a WebTransport server via my IOS app. Im not sure if that's natively supported by the existing HTTP/3 integration or requires additional third-party integration?

Pretty much WebSockets but based on Quic...

My existing app used Socket.io but I experienced a lot of TCP related issues and I am looking for a better solution maybe using HTTP/3 (WebTransport) which is based on UDP to mitigate issues like high-latency, head of the line blocking, etc.