Skip to content

Vijar/Parse-for-Titanium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Parse-for-Titanium

Use the Parse Javascript SDK with Titanium Studio.

Versions

Parse Javascript SDK 1.1.4

Titanium Studio 2.1

Installation

  1. Copy the included parse-x.x.x.js file into the "Resources" folder in Titanium

  2. Copy the following line to the top of "app.js" in your project "Resources" folder

    Ti.include("parse-1.1.4.js");
  3. Just use parse like you would normally using the Parse Javascript SDK Guide

    i.e. add this to your code to test if its working

     Parse.initialize(applicationId, javaScriptKey);
    
     var TestObject = Parse.Object.extend("TestObject");
     var testObject = new TestObject();
     testObject.save({foo: "bar"}, {
       success: function(object) {
         alert("yay! it worked");
       }
     });
     

About

Use the Parse Javascript SDK with Titanium Studio

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published