cocoa-chen / SwiftLinkPreview

It makes a preview from an URL, grabbing all the information such as title, relevant texts and images.

Home Page:http://ios.leocardz.com/swift-link-preview/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

![Swift Link Preview](Images/badge.png)

**Link Previewer** for **iOS**, **macOS**, **watchOS** and **tvOS**

It makes a preview from an URL, grabbing all the information such as title, relevant texts and images.

[![Platform](https://img.shields.io/badge/platform-iOS%20|%20macOS%20|%20watchOS%20|%20tvOS-red.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#requirements-and-details) [![CocoaPods](https://img.shields.io/badge/pod-v0.1.0-blue.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#cocoapods) [![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#carthage) [![Swift Package Manager](https://img.shields.io/badge/SPM-compatible-orange.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#carthage)


Index


Visual Examples

UTF-8 Extended UTF-8 Gallery
UTF-8 Extended UTF-8 Gallery
Video Websites Images
Video Websites Images

Requirements and Details

  • iOS 8.0+ / macOS 10.9+ / tvOS 9.0+ / watchOS 2.0+
  • Xcode 7.3+
  • Built with Swift 2.2

Installation

CocoaPods

To use SwiftLinkPreview as a pod package just add the following in your Podfile file.

	source 'https://github.com/CocoaPods/Specs.git'
	platform :ios, '8.0'
	
	target 'Your Target Name' do
	  	use_frameworks!
	  	// ...
	  	pod 'SwiftLinkPreview', '~> 0.1.0'
	  	// ...
	end

Carthage

To use SwiftLinkPreview as a Carthage module package just add the following in your Cartfile file.

  	// ...
	github "LeonardoCardoso/SwiftLinkPreview" ~> 0.1.0
  	// ...

Swift Package Manager

To use SwiftLinkPreview as a Swift Package Manager package just add the following in your Package.swift file.

import PackageDescription

let package = Package(
  name: "Your Target Name",
  dependencies: [
    .Package(url: "https://github.com/LeonardoCardoso/SwiftLinkPreview.git", majorVersion: 0)
  ]
)

Manually

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()

Requesting preview

slp.preview(
    "Text containing URL",
    onSuccess: { result in
    	
		print("\(result)")
        
    },
    onError: { error in
       
		print("\(error)")
        
    }
)

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
]

Cancelling a request

slp.cancel()

FLOW

flow

Important

You need to set Allow Arbitrary Loads to YES on your project's Info.plist file.

app security

If you don't want to use the option above and you are using SwiftLinkPreview for services of your knowledge, you can whitelist them on Info.plist file as well. You can read more about it here, here and here.

app security

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 http://ios.leocardz.com/swift-link-preview/.

Contact me either by Twitter @leocardz or emailing me to contact@leocardz.com.

Related Projects

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.

About

It makes a preview from an URL, grabbing all the information such as title, relevant texts and images.

http://ios.leocardz.com/swift-link-preview/

License:MIT License


Languages

Language:Swift 96.3%Language:Ruby 2.1%Language:Objective-C 1.6%