Questions tagged [stackmob]

A Backend as a Service (BAAS) provider that simplifies the set-up of network services for your website or mobile application.

Homepage

Developer Documentation

Developer Support

110 questions
0
votes
1 answer

Application Struck while trying to establish one to Many Relationship between User & UserContacts (Stackmob)

I am trying to establish a one to many relationships between 1 User(User Table) and his Contacts(Usercontacts Table) I am establishing the relationship likewise : calling this way, [hypeController uploadContactsStackMob]; -…
iOSDev
  • 412
  • 10
  • 30
0
votes
1 answer

StackMob - How to query for boolean values?

I saved a StackMobModel object to the server and its data appears on the stackmob site correctly. I am able to query for all of the fields except for booleans (ex: new StackMobQuery().fieldIsGreaterThanOrEqualTo("age",20) ) All of the query types…
Reed B
  • 636
  • 1
  • 8
  • 19
0
votes
1 answer

StackMob & UITableView lags

I have strange behavior with UITableView and StackMob SDK last version. I'm try to show list of users in the table. My request code like in this tutorial by StackMob: NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; // Edit the entity…
Rost K.
  • 262
  • 2
  • 14
0
votes
1 answer

Using Handlebars.js with StackMob

What I'm trying to do is when the page is loaded it will show the user a list of all their "contacts". There is a fair bit of code so I put it all HERE and below is just the load method. $(window).load(function () { var Contacts =…
Thomas Mannion
  • 406
  • 5
  • 13
0
votes
1 answer

When should I save the context?

I'm new in StackMob, so please excuse me for this basic question. The tutorials there are lacking. When I create a new object and save the NSManagedObjectContext right away, the object is saved successfully. But normally when I use core data, I save…
Noam Solovechick
  • 1,127
  • 2
  • 15
  • 29
0
votes
1 answer

stackmob 1 to-many relationship architecture

I'm searching for some architectural guidance for a 1 to-many relationship for an ios app with a backend that runs on stackmob (baas). In my project I want to implement a facebook like stream of posts. Users will be allowed to write comments to the…
0
votes
1 answer

Current logged-in user in stackmob

I'm trying to get a list of contacts for the user that is logged in, but I can't figure out how to find the current user. I know from Parse.com you use Parse.User.current() does Stackmob have anything like this? Code below to demonstrate what i'm…
Thomas Mannion
  • 406
  • 5
  • 13
0
votes
2 answers

Application getting crashed in coredata for object ID for it's primary key field

I am using Coredata for the 1st time, I am setting some values to the userinfo entity, fetching some values from usergroups entity. While doing this process my application is getting crashed saying: 'Item not previously assigned an object ID for…
iOSDev
  • 412
  • 10
  • 30
0
votes
1 answer

Getting Relationship Object in coredata

I am new to coredata, this is the 1st time i am using so please bear me as i am expalining. i have 2 Entites named userinfo and usergroups, and they both are related in one to many relationship, Now usergroups(relationshipped name ) field wiil be…
iOSDev
  • 412
  • 10
  • 30
0
votes
0 answers

Using Approval and Disapproval for Device

I am fetching record from database and printing it on table. See the Image: For Device-permission column I want to use Button which will show Disapproved (means device is approved )if value is "true" and OnClick on the button i want to call a…
Alpesh
  • 265
  • 2
  • 7
  • 22
0
votes
1 answer

In android stackmob push notifications demo what does API_SECRET mean?

StackMobAndroid.init(this.getApplicationContext(), StackMob.OAuthVersion.One, 0, API_KEY, API_SECRET); API_KEY is stackmob's public key(?) API_SECRET ? the api_key which is obtained from GCM will be configured in stackmob's push module.
0
votes
2 answers

Getting the Value from an editable row

I am working on an application where I need to update the the table cell value So I make that table column editable as below. I am getting these values from the stackMob database(cloud) .Now I want to Update this Device-nickname(editable table…
Alpesh
  • 265
  • 2
  • 7
  • 22
0
votes
1 answer

A database architecture and algorithm to support querying for availability over a week

I have an iPhone app where a user can set his availability for different times of the day, for each day of the week. Having just three availability periods per day (morning/afternoon/evening) will work for the time being, but I'd want to implement…
Anurag
  • 26
  • 2
0
votes
1 answer

Listview wont show stackmob query list

Hello im trying to get stackmob to query a items to a listview everything is working except the result list appearing in the listview i have tried search all over the internet and have found nothing that has worked. here is my code when i use…
user1224238
0
votes
1 answer

how to parse SMValue to String array

I am just getting familiar with the StackMob server side custom code sdk and i am trying to get a relationship field and iterate through it in the form of a String array. How do i do that ? is it possble to iterate through it without parsing it…