adam griffin
Posts: 0
Joined: Tue May 21, 2013 8:44 pm

Having Trouble opening app on iPhone.

I have just downloaded the .ipa to test on iPhone. It worked perfectly until I click out of the app. I tried to go back into the app but it never reopened. I even tried uninstalling the app and re-installing it back on to the iPhone. It still does not open.

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

Having Trouble opening app on iPhone.

Hello,

Could you show us the error from app crash report?
http://help.getpocket.com/customer/po...
https://developer.apple.com/library/i...

adam griffin
Posts: 0
Joined: Tue May 21, 2013 8:44 pm

Having Trouble opening app on iPhone.

I fixed it.

adam griffin
Posts: 0
Joined: Tue May 21, 2013 8:44 pm

Having Trouble opening app on iPhone.

How can i fix the time issue with iPhone. On my galaxy s4, on load event I load a date from the database into a label i get the date back correctly, but on the iPhone 5c and iPhone 4s I get the date back as NaN/NaN/NaN. How can this be fixed????

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

Having Trouble opening app on iPhone.

Lets try to use this code in your service mapping Add JS:
pre
code
var d = new Date(value);
return d.toLocaleDateString();
/code
/pre

adam griffin
Posts: 0
Joined: Tue May 21, 2013 8:44 pm

Having Trouble opening app on iPhone.

it didnt work... I tried this code to format it into a variable.

var d = $.datepicker.formatDate('mm/dd/yy', new Date(value));
return d.toLocaleDateString();

adam griffin
Posts: 0
Joined: Tue May 21, 2013 8:44 pm

Having Trouble opening app on iPhone.

This is the error it gave..

Object 03/07/2014 has no method 'toLocaleDateString'

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

Having Trouble opening app on iPhone.

Lets try solution from this topic:
https://getsatisfaction.com/apperyio/...

adam griffin
Posts: 0
Joined: Tue May 21, 2013 8:44 pm

Having Trouble opening app on iPhone.

How can i get the date into the format mm/dd/yy using the code
d = new Date(value);
return d.toISOString().replace("T"," ").replace("Z","");

Return to “Issues”