It makes a preview from an url, grabbing all the information such as title, relevant texts and images.
UTF-8 | Extended UTF-8 |
---|---|
Gallery | Video Websites |
Images | |
Requirements and Details
- IOS 8.0 +
- Xcode 7.3 or above
- Built with Swift, 2.2
Installation
CocoaPods
The source 'https://github.com/CocoaPods/Specs.git' platform: ios, '8.0' target 'Your Project Name' do use_frameworks! / /... Pod 'SwiftLinkPreview', '~> 0.0.3' //... endCopy the code
Carthage
/ /... Making "LeonardoCardoso/SwiftLinkPreview" ~ > 0.0.3 / /...Copy the code
Manually
Although it’s not recommended, you just need to drop SwiftLinkPreview folder into Xcode project (make sure to enable “Copy items if needed” and “Create groups”).
Usage
Instatiating
import SwiftLinkPreview
// ...
let slp = SwiftLinkPreview()Copy the code
Requesting preview
slp.preview(
"Text containing url",
onSuccess: { result in
print("\(result)")
},
onError: { error in
print("\(error)")
}
)Copy the code
result is a dictionary [String: AnyObject]
like:
[
"url": "original URL", // NSURL
"finalUrl": "final ~unshortened~ URL.", // NSURL
"canonicalUrl": "canonical URL", // NSURL
"title": "title", // String
"description": "page description or relevant text", // String
"images": ["array of URLs of the images"], // String array
"image": "main image" // String
]Copy the code
Cancelling a request
Important
You need to set Allow Arbitrary Loads
to YES
on your project’s Info.plist file.
TIPS
Not all websites will have their info brought, you can treat the info that your implementation gets as you like. But here are two tips about posting a preview:
- If some info is missing, you can offer the user to enter it. Take for example the description.
- If more than one image is fetched, you can offer the user the feature of picking one image.
Information and Contact
Developed by @LeonardoCardoso.
For more information, please visit ios.leocardz.com/swift-link-… .
Contact me either by Twitter @leocardz or emailing me to [email protected].
Related Projects
- Link Preview (PHP + Angular + Bootstrap)
- Android Link Preview
License
The MIT License (MIT)
Copyright (c) 2016 Leonardo Cardoso
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.
Copy the code