Awesome
<a href="https://www.simform.com/"><img src="https://github.com/SimformSolutionsPvtLtd/SSToastMessage/blob/master/simformBanner.png"></a>
SSMediaLibrary
SSMediaLibrary is written in Swift with the use of Combine framework. It will download and open up following files:
- iWork documents
- Microsoft Office documents (Office ‘97 and newer)
- Rich Text Format (RTF) documents
- PDF files
- Images
- Text files whose uniform type identifier (UTI) conforms to the public.text type
- Comma-separated value (csv) files
- Video
- Any URL
Setup Instructions
CocoaPods
To integrate SSMediaLibrary into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'SSMediaLibrary', '~> 1.0.0'
and in your code add import SSMediaLibrary
.
Swift Package Manager
When using Xcode 11 or later, you can install SSMediaLibrary
by going to your Project settings > Swift Packages
and add the repository by providing the GitHub URL. Alternatively, you can go to File
> Swift Packages
> Add Package Dependencies...
Manually
- Add
MediaManager.swift
,NetworkManager.swift
andUTI.swift
to your project. - Grab yourself a cold 🍺.
Requirements
- iOS 13+
- Xcode 11+
Usage
- Just provide URL to the MediaManager
- Call the show function of MediaManager
Basic Examples
guard let url = URL(string: "http://www.africau.edu/images/default/sample.pdf") else { return }
let manager = MediaManager(url: url)
manager.show()
guard let url = URL(string: "https://file-examples-com.github.io/uploads/2017/10/file_example_JPG_100kB.jpg") else { return }
let manager = MediaManager(url: url)
manager.show()
guard let url = URL(string: "https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mov-file.mov") else { return }
let manager = MediaManager(url: url)
manager.show()
To-Do
- Show file downloading progress
- Support for other file
MIT License
Copyright (c) 2021 Simform Solutions
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.