SatisMeter is mobile and web platform for collecting customer feedback, based on Net Promoter Score. This package contains a survey widget that can be easily integrated into any iOS application.
- iOS 7.1+
SatisMeter is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "SatisMeter"
#import <SatisMeter/SatisMeter.h>
In your app delegate inside didFinishLaunchingWithOptions type this:
NSDictionary *traitsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
@"James Bond" ,@"name",
@"Gold", @"plan",
@"2015-11-01T00:00:00.000Z", @"createdAt",
nil];
[[SatisMeter sharedInstance] identifyUserWithUserId: @"007"
writeKey: @"K7eMIPEXyPMlG7fu"
andTraitsDictionary: traitsDictionary];
Replace the writeKey
with the one found in SatisMeter settings / Integrations / API Keys.
Replace user id
, name
, etc. with the ones of the currently logged-in user.
SatisMeter, https://satismeter.com
satismeter-ios SDK is available under the MIT license. See the LICENSE file for more info.