https://github.com/zendesk/sunshine-conversations-ios
Smooch
https://github.com/zendesk/sunshine-conversations-ios
smooch-sdk
Last synced: about 1 year ago
JSON representation
Smooch
- Host: GitHub
- URL: https://github.com/zendesk/sunshine-conversations-ios
- Owner: zendesk
- Created: 2013-12-18T19:10:03.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-04-11T08:57:20.000Z (about 1 year ago)
- Last Synced: 2025-04-11T10:01:58.703Z (about 1 year ago)
- Topics: smooch-sdk
- Language: Objective-C
- Homepage: https://smooch.io
- Size: 722 MB
- Stars: 125
- Watchers: 236
- Forks: 48
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Smooch](http://www.smooch.io)
Please submit bug reports to [Zendesk](https://support.zendesk.com/hc/en-us/articles/4408843597850) and be sure to consult our [Getting help section](https://developer.zendesk.com/documentation/zendesk-web-widget-sdks/getting_support_on_zendesk_mobile_sdks/) of our documentation.
[](http://cocoadocs.org/docsets/Smooch/)
[](http://cocoadocs.org/docsets/Smooch/)
[](http://smooch.io/terms.html)
[](https://github.com/Carthage/Carthage)
Smooch is the best way to have personal, rich conversations with people on your website or customers on any device. Our features, integrations and developer-friendly APIs empower companies to connect with their customers in a whole new way.
The Smooch iOS SDK will add [in-app messaging](https://smooch.io/in-app-messaging/) to your iOS app. Customers will be able to talk to you from your app, while you manage conversations using your favorite business apps.
- Maximize development productivity with a single codebase across platforms and [add more channels](https://smooch.io/cross-channel-messaging/) anytime.
- Build better relationships with messaging that feels and looks native to your app.
- Delight your customers with the most engaging conversational experience using [rich messaging](https://smooch.io/rich-messaging/).
- Sync conversations across every device and channel your customers use.
- Bring every conversation into your existing business apps. No new tool to learn. [See all integrations](https://smooch.io/integrations/).
Sign up and get an app id: [https://app.smooch.io/signup](https://app.smooch.io/signup).
CocoaPods:
pod "Smooch"
pod update
Carthage:
github "zendesk/sunshine-conversations-ios" ~> VERSION_NUMBER
carthage update
Obj-C:
```objc
[Smooch initWithSettings:[SKTSettings settingsWithIntegrationId:@"YOUR_INTEGRATION_ID"] completionHandler:^(NSError * _Nullable error, NSDictionary * _Nullable userInfo) {
// Your code after init is complete
}];
[Smooch show];
```
Swift:
```Swift
Smooch.initWith(SKTSettings(integrationId: "YOUR_INTEGRATION_ID")) { (error: Error?, userInfo: [AnyHashable : Any]?) in
// Your code after init is complete
}
Smooch.show()
```
Our [Docs and full install guide](http://docs.smooch.io).
Also, check out [Smooch Help Kit](https://github.com/smooch/smooch-helpkit-ios) for even more features!
# Bugs
Please submit bug reports to [Zendesk](https://support.zendesk.com/hc/en-us/articles/4408843597850) and be sure to consult our [Getting help section](https://developer.zendesk.com/documentation/zendesk-web-widget-sdks/getting_support_on_zendesk_mobile_sdks/) of our documentation.