Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Embeding LiveChat mobile chat window in iOS application

License

Notifications You must be signed in to change notification settings

spasbilyarski/chat-window-ios

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LiveChat for iOS

LiveChat for iOS allows you to integrate LiveChat Chat Window into your iOS app.

Carthage compatible Version License Platform

Requirements

  • iOS 9.0+
  • Xcode 8.0+

Installation

Carthage

If you use Carthage to manage your dependencies, simply add LiveChat to your Cartfile.

github "livechat/chat-window-ios" ~> 2.0

Make sure you have added LiveChat.framework to the "Linked Frameworks and Libraries" section of your target, and have include it in your Carthage framework copying build phase.

CocoaPods

If you use CocoaPods to manage your dependencies, simply add LiveChat to your Podfile.

pod 'LiveChat', '~> 2.0'

Manual Installation

You can integrate LiveChat into your project manually without using a dependency manager.

Swift

Just drag all files from the LiveChat/Classes directory into your project.

Objective-C

Drag all files from the LiveChat/Classes directory into your project. When adding first *.swift file to Objective-C project, Xcode will ask you to create a Bridging Header. It is not necessary for LiveChat to work, so you can decline unless you plan to call Swift code from Objective-C. More information about bridging headers and Swift and Objective-C interoperability can be found here. You need to put following import statement: #import "<Your Project Name>-Swift.h" at the top of your .m file.

Also, for Objective-C projects, you need to set the Embedded Content Contains Swift Code flag in your project to Yes (found under Build Options in the Build Settings tab).

Usage

Initalization

import LiveChat

LiveChat.licenseId = "YOUR_LICENSE_ID"

Presenting Chat Widget

LiveChat.presentChat()

Setting Custom Variables

You can provide customer name or email if they are known, so customer will not need to fill pre-chat survey:

LiveChat.name = "iOS Widget Example"
LiveChat.email = "example@livechatinc.com"

If you want to associate some additional info with your customer, you can set Custom Variables:

LiveChat.setVariable(withKey:"Variable name", value:"Some value")

Assign chat to specific group

You can route your customers to specific group of agents by providing groupId. More information can be found here: https://www.livechatinc.com/kb/dividing-live-chat-by-group/.

LiveChat.groupId = "7"

Notifying user about agent response

You can notifiy your user about agent response if chat was minimized by the user. To handle incoming messages your class must implement LiveChatDelegate protocol and set itself as LiveChat.delegate.

class YOUR_CLASS_NAME : LiveChatDelegate { // Your class need to implement LiveChatDelegate protocol
	func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
		LiveChat.licenseId = "YOUR_LICENSE_ID"
		LiveChat.delegate = self // Set self as delegate

		return true
	}

	func received(message: LiveChatMessage) {
		print("Received message: \(message.text)")
		// Handle message here
	}
}

Handling URL

By default, all links in chat messages are opened in Safari browser. To change this behavior you can use the LiveChatDelegate to handle URL's yourself.

func handle(URL: URL) {
	print("URL is \(URL.absoluteString)")
	// Handle URL here
}

Sending Photos from device library

If you have file sharing enabled for visitors, you should provide usage description by including NSPhotoLibraryUsageDescription (Privacy - Photo Library Usage Description) key in your Info.plist file to avoid crash on iOS 10 or higher.

Example Apps

Example apps can be found in the Examples folder. Samples for both Swift and Objective-C are provided.

Getting help

Any questions? Chat with Us!

License

LiveChat for iOS is available under the MIT license. See the LICENSE file for more info.

About

Embeding LiveChat mobile chat window in iOS application

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 95.8%
  • JavaScript 2.6%
  • Other 1.6%