0
votes
0answers
23 views
Clearing last JSON response
I am developing an iOS 6.1 app using Titanium Studio, build: 3.1.2.201307091805, I am testing on the iPhone simulator and iPad device. I have a search field that gets JSON results from a remote ...
1
vote
1answer
56 views
Hard to click links on touchscreen
This is my setup(sorry for the bad indetation):
<div class="container">
<a href="somewhere">
<div class="tall"></div>
</a>
<a href="somewhere else">
...
1
vote
0answers
16 views
iOS navigation bar in pure javascript with Brad Birdsall's Swipe 2.0
I am trying to create a navigation bar in pure javascript for iOS. The code I have seems to work if the page is handled "gentally". However, the page becomes mis-aligned fairly easily, especially by ...
-1
votes
0answers
11 views
Javascript knowledge required for writing iOS UI Automation tests?
Javascript is the chosen language for writing Instruments-based UI Automation tests. I'd like to be able to write those tests as someone who knows nothing about Javascript. However, I don't want to ...
0
votes
1answer
13 views
How to detect if browser address bar is showing on iOS devices?
Is there a way to consistently detect if the browser address bar is showing?
We have a HTML5 app and want to show a special link if the address bar is showing, encouraging users to add the app to ...
2
votes
1answer
21 views
How to open an app if installed thru a webpage in Safari?
We have an app, lets call it: xyz_app for which I have a custom URL scheme in form of xyz_app://.
We are sending an email to the user.
when he clicks on the link, he is suppose to go to the app and ...
0
votes
0answers
15 views
Mobile Safari - How to Default to Full Numeric Keypad for Decimal Entry w/o type=“number”, or disable Safari input type=“number” correction
I have a fairly basic but frustrating problem, essentially I've been trying to force input fields to behave more like text input types (where they do not correct incorrect number entries, such as ...
0
votes
1answer
30 views
iOS injecting redirect using javascript
I am trying to redirect using iOS's stringByEvaluatingJavavascriptFromString. The whole app is basically just our mobile site with an objectice C wrapper.
Here is my code
...
2
votes
0answers
63 views
How to access cell inside UITableView in iOS automation
I need help accessing cell (name:Settings) inside UITableView. I am doing ios-UIAutomation on ipad v6.0.1.
I tried with all these commands -
mainWindow.popover().tableViews()[0].cells()[4].tap();
...
0
votes
0answers
12 views
Using mobileconfig to access advertiser identifier on mobile safari
I'm trying to get the IFA of an iOS device but having a hard time figuring out how to go about that. I know with mobile config profiles you can access the UDID but I need the advertiser identifier if ...
0
votes
1answer
33 views
How to scale down big image for different iOS devices
In my web app, I want to show images in the css columns (i.e. fit within the width of the column). I want to do it dynamically depending on the images in the html content that I am loading. I guess I ...
2
votes
1answer
60 views
Disable all scrolling on webpage
I would like to know if it is possible to disable all scrolling on a webpage.
I am currently using
html, body { overflow:hidden; }
The issue is that this does not work on iOS devices and if you ...
0
votes
0answers
9 views
Blank Screen between a SplashScreen and webview in phonegap iOS
How can I avoid the blank white screen appearing between the phonegap splashscreen and webview loading stage in iOS.I have followed the suggested solutions..like
[1]: ...
0
votes
1answer
19 views
Read html from current UIWebview
I have a UIWebview that shows some links. When I clic on a link, it sends me some JSON. In order to display the data that is sent to me, I need :
1) detect when a link is called
2) get the json
For ...
0
votes
1answer
15 views
Preventing Ios device from scrolling to top when the upper part of the window is pressed
My problem is that when the user has scrolled down and clicked on the upper level of my fixed navigation bar. Instead of it linking to a new page, it will scroll the window to the top of the page. Is ...