How to Use the In-App Document Viewer on iOS: Multi-Tab PDF, Excel, Word & Multitasking
Review contracts and spreadsheets without losing your chat rhythm. Discover how Telegram on iOS integrates native document viewing (.pdf, .xls, .docx) directly into the multi-tab in-app browser—enabling instant background collapsing, simultaneous chatting, and zero file switching friction.
How Telegram iOS Handles Documents in WebKit Containers
A technical overview of Apple's QuickLook framework integrated into Telegram's sandboxed multi-tab browser.
// Intercepting supported MIME types in Telegram iOS Browser
let supportedDocMimes = [
"application/pdf",
"application/vnd.ms-excel",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"application/msword",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document"
]
// Instantiating sandboxed QuickLook Controller inside Browser Tab
if supportedDocMimes.contains(mimeType) {
let docTab = BrowserTab(url: localFileURL, type: .document)
browserController.addTab(docTab)
browserController.presentTab(docTab)
}
// Minimizing to Floating Dock
browserController.minimizeToBottomBar(duration: 0.25, damping: 0.8)
Instead of launching external apps or modal sheets that lock the user interface, Telegram on iOS instantiates Apple's hardware-accelerated QuickLook preview controller inside an isolated BrowserTab container. This architectural integration allows files to share the browser's gesture engine—enabling seamless downward swipe minimizing, tab switching, and state preservation across memory pressure cycles.
Simulate opening documents inside Telegram, collapsing them into the bottom bar, and switching between active files.
How to Multitask with Documents on iOS
Follow these simple gestures inside Telegram for iPhone and iPad.
Document Viewer FAQ
Answers regarding supported formats, search within files, and Android parity.
.pdf, .doc, .docx, .xls, .xlsx, .ppt, .pptx, and plain text files.
•••) provides one-tap forwarding, printing via AirPrint, and saving to your Files app.