Stomt-iOS-SDK 2.0.7

Stomt-iOS-SDK 2.0.7

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2017

Maintained by H3xept.



stomt iOS-SDK

Easy integration

Our SDK allows you to add the feedback solution www.stomt.com to your iPhone or iPad app.

To connect your app to stomt, create a project page on stomt first.

Installation

To install the stomt-iOS-SDK you have multiple choices.

Versioning for pod

From version 2.0.2 the pod works for iOS 8/9/10 seamlessly.

Manually

  • Issue from command line git clone https://github.com/stomt/stomt-ios-sdk to download the github project.
  • Locate StomtiOS.xcodeproj in the cloned repo and drag it into your current Xcode project. Be sure to place it outside your project hierarchy!
  • Goto Build Phases pane of your app and add StomtiOS.framework inside Link Bynary With Libraries.

Done!

Configuration

Import the SDK:

(If installed via CocoaPods)

#import "Stomt.h"

(If installed manually)

#import <StomtiOS/Stomt.h>

Initialize the framework:

// Setup Stomt with your AppID
// -> get yours at: https://www.stomt.com/dev/my-apps
//
[Stomt setAppID:@"abcdefghijklmnopqrstuvwxy"];

Documentation

Common Usages

Create a stomt

The most common action while using the SDK is to send a Stomt.

// Open a creation modal for your applications page
// -> the targetID is your pages identifier you can copy it from the pages url
//    https://www.stomt.com/stomt-ios-sdk -> stomt-ios-sdk
//
[Stomt presentStomtCreationPanelWithTargetID:@"target-id" 
                defaultText:@"..."
                 likeOrWish:kSTObjectWish 
             fromViewController:self 
                completionBlock:^(NSError *error, STObject *stomt) {

                }];

Authenticate

Authentication to Stomt can be accomplished in two ways:

Via normal OAuth flow, using the handy class method +[Stomt promptAuthenticationIfNecessaryWithCompletionBlock:] You also have to provide your app with the url schema "stomtAPI" and override the following methods in your AppDelegate

//For iOS 8
- (BOOL)application:(UIApplication*)application openURL:(nonnull NSURL *)url sourceApplication:(nullable NSString *)sourceApplication annotation:(nonnull id)annotation
{
    return [[Stomt sharedInstance] application:application openURL:url sourceApplication:nil annotation:nil];
}
//For iOS 9 or higher
- (BOOL)application:(UIApplication *)application openURL:(nonnull NSURL *)url options:(nonnull NSDictionary<NSString *,id> *)options
{
    return [[Stomt sharedInstance] application:application openURL:url sourceApplication:nil annotation:nil];
}

This is still on development. It will be updated soon, please check for updates.

Or via Facebook connect.

Documentation coming soon!

Contribution

We would love to see you contributing to our iOS SDK. Feel free to fork it and we're also awaiting your pull-requests!

Authors

More about stomt