Tagged Questions
0
votes
0answers
25 views
Website won't scroll or zoom on iphone. NodeJS canvas project
I have a problem that I've been working on for the past 10 hours (going crazy).
I've been working on a revised version of Walma - which is a collaborative white board written for node.js. I have ...
0
votes
1answer
76 views
UITableView: table view scrolling makes images disappear
I am working with one iOS application it has two tables placed side by side, each table view holds images. Both table views having the auto scrolling and manual scrolling functionality. By default ...
0
votes
2answers
66 views
How can I detect next page number of UIScrollView which is 'scrollView.pagingEnabled' = YES? in 'scrollViewDidEndDragging'?
I searched several stuffs on stackoverflow like
CGFloat pageWidth = scrollView.frame.size.width;
int pageNumberToBeScrolled = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
if ...
0
votes
0answers
41 views
SearchDisplayController hide searchResultsTableView and show underlaying table view disables scrolling
I have a tableview with a searchDisplayController and three different search scopes. For the two first scopes I want to display the search results in the standard searchResultsTableView. For the last ...
6
votes
1answer
56 views
Getting page number of pdf file Titanium Studio iPhone
I am creating an app to read PDF file. I'm using WebView to load the PDF file. Below is the code:
var wv = Ti.UI.createWebView({
backgroundColor:"gray",
border:1,
...
0
votes
1answer
122 views
Keeping the body background image fixed on the iphone
I have been trying for days to get the background image on my JQM iPhone app to remain fixed and to have the content scroll above it.
Having research many of the answers given I have the following ...
0
votes
3answers
79 views
Scrolling UITextField into view when keyboard is shown
I'm writing an app targeting iOS 6.1. I'm trying to follow this Apple doc on how to scroll a UITextField into view if it is obscured by the keyboard. The problem is that Apple's documented algorithm ...
0
votes
1answer
101 views
Scrolling window to zero to hide Mobile Safari browser chrome seems slower than Twitter's
I'm using the following JS to scroll the window to position 0 to fool the browser into hiding its UI chrome.
if navigator.userAgent.match(/iPhone/i) or navigator.userAgent.match(/iPod/i)
if ...
0
votes
0answers
89 views
ScrollTop on ipad — how to do this?
I have a site working across Win/Mac platforms and all browsers (as far as I can tell). This is a horizontal scrolling site and each navigational section when clicked scrolls to top (left visually) ...
1
vote
1answer
102 views
Can we scroll iPhone Photo Library to Bottom Programmatically
In my app I need to select the image from the Photo Library and I have hundreds of photos in that. The issue is latest photos captured by Camera, saves at the bottom of the Photo Library and thus, I ...
0
votes
3answers
94 views
Action while scroll up from UITableview
I want to write an action when user scroll up from UITableView,How can I do this ?
0
votes
3answers
170 views
(mobile) How to keep the nav bar hidden during scrolling
I'm working on this: mobiledoor
for Mobile, and I want to hide the nav bar and keep it hidden.
I'm already using:
setTimeout(function () {
window.scrollTo(0, 1);
}, 500);
To hide the nav bar ...
0
votes
0answers
56 views
How to fire window.onscroll = function(){…} everytime the user scrolls, instead of only on touchend on the iPhone?
I need the opacity of a shadow div to increase as the user scrolls down the page, but the following code only sets the div's opacity once the touchend event is fired. Is there a way to fire a function ...
0
votes
0answers
35 views
Get duration for each line in AVAudioplayer (Text To Speech) in iPhone?
I am working in iPhone application, Using UITextView to enter the text and save it NSDocumentDirectory path, then retrieve the file to make temp.wav format using (FliteTTS API) and load in ...
0
votes
1answer
140 views
Remove application scrolling in ios Phonegap
I am creating an Application in ios using Phonegap 2.2.0. When I build the example application given by Phonegap team, the build was success and the application running fine. But there is scroll by ...
0
votes
2answers
149 views
UISearchBar scrolls while the UITableView is scrolling
How to accomplish the UISearchBar scrolling effect like Instagram.app? The UISearchBar is scrolling up while the UITableView is scrolling up. The UISearchBar stop scroll down when it's origin.y equals ...
-2
votes
2answers
227 views
Need to make my jquerry site scrolling (swiping) on iphone?
I have one big problem, I have site that I've made that works on desktop computers but not on a mobiles (touchscreens) and iPhone & iPad. In the site I have scrolling on mouse wheel in directions ...
0
votes
0answers
145 views
tournadsim custom-jquery.js infinite scroll with iphone and ipad not working
Im new to jQuery and not sure what to change. Basically Im using a script I got of the web to do infinite scrolling for a project. It works great in all desktop browsers, but it only works Id say 2 ...
0
votes
3answers
245 views
uiscrollview not scroll smoothly in iphone 4
I have implemented TMQuiltView.
It work fine in iPhone 5 and iOS 5 and iOS 6.0 also. I have my iPhone 4. Its updates to iOS 6. but scroll is not smoothly. whats problem there? can any one help me ...
1
vote
1answer
327 views
Can't reliably detect scroll bottom between iPhone portrait and landscape modes
I'm trying to detect when a user has scrolled to the bottom of the document. My current solution works fine in desktop browsers, and with Mobile Safari in landscape mode (with a 1px variance that I ...
2
votes
2answers
192 views
How to remove the white space in UITableview scroll in the iphone landscape mode?
In my tableview, I have disabled the default scroll in portrait mode. But when the orientation changes to landscape mode, i have enabled the scroll so that I can view the entire content of the table. ...
0
votes
1answer
156 views
UIScrollview does not scroll all the way through
So I have a scrollview that I dropped into my view (in the nib file), hence nothing has been done programmatically yet. I have then placed 9 buttons spaced out in this scrollview. Now the scrollview ...
1
vote
1answer
516 views
iOS make UICollectionView scrollable with PullToRefreshView
How do you make a UICollectionView scrollable when you only have a few cells?
I've implemented a UICollectionView that lays out cells in the form of a grid. If there's only a few cells, then by ...
0
votes
1answer
57 views
Searching a folder on a site
I am fairly new to coding for iOS, so forgive me if my question seems somewhat of a waste of time. Anyways, I want to upgrade my current app. In this update I want to have a grid layout of logos. ...
2
votes
2answers
289 views
UITextView scroll (Automatically) in iPhone?
I am working in iPhone application, Using UITextView to show multiple text inside it, when the user tab the screen, automatically scroll UITextView content from bottom to top (scrolling level slow) ...
3
votes
1answer
100 views
Hover state firing on web app when scrolling
Creating a web app over here, and the biggest issue I'm facing is that whenever you scroll through the content, all of the hover/active/focus states will fire-off, making it rather annoying.
In a ...
0
votes
0answers
106 views
Single page smartphone web app with scrollable panels of different heights
I'm making an iPhone web app with various panels loaded into absolutely positioned divs equal to the height of the screen (html and body also set to 100% height). Each panel's content is of a ...
0
votes
2answers
182 views
how to add views to page control
scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
scrollView.backgroundColor = [UIColor redColor];
scrollView.maximumZoomScale = 1.0;
scrollView.minimumZoomScale = 1.0;
...
0
votes
2answers
159 views
How to make an UITextView scrollable when the keyboard appears?
I would like to know how I can make my UITextView scrollable when it's being edited ? When the user wants to edit it, the keyboard shows but then the UITextView is no more scrollable. So all the text ...
1
vote
0answers
74 views
iphone fixed element is jumping on first scroll
I am creating a mobile webshop with a fixed element (cart amount, home button..).
If you scroll the page for the first time, the element always scrolls on top and is jumping to the its origin.
Hope ...
0
votes
2answers
134 views
How to control ScrollView, that doesn't be repreated again and again
Do you know, how to control the ScrollView, so they do not repeat. For example I have 5 pictures (like the added figure), they should be viewable from 1-5 and it should stop right after the last ...
0
votes
0answers
95 views
How to increase UITextview scroll speed in iPhone?
I am working in iPhone application, Using UITextView to get the user script and show on the screen.
Then i tried to make increase scroll speed for UITextView (Is it possible to do that), but i didn't ...
1
vote
1answer
660 views
iPhone: Scroll to last item in UICollectionView
Im creating a viewcontroller with an UICollectionVIew with the images from the users library.
After the assets are loaded and i reload the data from the UICollectionView, i try to scroll to the last ...
0
votes
1answer
630 views
Swiping Images with Page Control in Iphone (Part 2)
I am trying to make practice app where i can scroll images with page control. I am able to scroll images and able to include the page control. But the problem i face is i am not able to interlink the ...
0
votes
2answers
3k views
Swiping Images with Page Control in Iphone
I am trying to make practice app where i can scroll images with page control. I am able to scroll images and able to include the page control. But the problem i face is i am not able to interlink the ...
0
votes
0answers
38 views
uipickerview continous based on inputvalue
Working on a iPhone-app where I would like to use the UIPickerview for a input value that checks (and increments) every 100 ms using a timer. The value I want the pickerview to scroll to is a ...
0
votes
1answer
1k views
Infinite Scroll for iPhone
I am using the below to trigger an inifinite scroll and fire an Ajax request. This works fine on desktop and iPad browsers but not on iPhone. What am I missing?
//Ajax
var page = 1;
...
0
votes
1answer
273 views
Rolodex-like iOS App that Vertically Scrolls
I want to create an app that looks like a Rolodex Card wherein you'll have to scroll vertically in different views and when tapped, will go on full screen view with a close button to return to the ...
0
votes
0answers
207 views
scrollup uiscrollview when keyboard show up
I have a little prblem with an application, I have a scrollview with an height of 270px, with a textfield I add a button to scrollview, one under the other, I want to reduce the frame of scrollview ...
0
votes
1answer
117 views
diagonal scroll animation of uiimageview
What I want to do is detect the diagonal scroll of user and move the views into the direction of the scroll. I want to achieve a coverflow-style animation except the arrangement of my views are ...
0
votes
1answer
312 views
iOS Fix TableView To Bottom Like Messages App
So this is completely out of my area of (expertise?) so I figured I'd ask it and see if anyone more experienced could give me a yes or no answer.
So, I'm using Appcelerator Titanium to build an app ...
0
votes
0answers
158 views
iPhone smooth scrolling disabled when zoom is disabled
I have a mobile version of a website. On the portrait view, the site fits onto the screen, but in landscape mode, there is a scroll bar. I have code in my head tag that disables the users zoom ...
-1
votes
1answer
76 views
Draggable on iphone
I've got a page with div's (one below the other) they're draggable ( I can move the content left/right) the site has vertical scroll, and the problem is, that on Iphone I cant move the page top/down ...
0
votes
1answer
59 views
Scroll View Edit - can I edit it outside of the view controller?
I'm a newbie here,
While editing scroll view contents on XCode 4's storyboard, you have to drag back and forth to "peek" and edit contents withint the view controller of iphone screen size.
Is ...
0
votes
1answer
171 views
iOS Static cell, automatic scroll, and additional toolbar keyboard
I'm currently coding an app that is mostly composed of forms.
To do the job I'm using static cells with an UITableViewController, that can contains UITextField and UITextView.
If you're using the ...
1
vote
0answers
132 views
Continuous horizontal scrolling MKMapView
Is there a way to have a Google MKMapView on iOS able so you can "continually" scroll horizontally? Android allows you to continually pan left or right. It makes it easy for zooming in on countries in ...
1
vote
1answer
123 views
How to indicate if there is more text to scroll down to using UITextView in iOS?
Specifically, I want an image to pop up for a few seconds if there is more text to scroll down to. The image popping up is not a problem but I can't see how to set up the scrolling delegate and work ...
2
votes
0answers
169 views
Stumped. Scroll to Anchor works on desktop, but not on iPhone
OK. I have a fixed position header that contains a nav with three absolute positioned li a elements displayed inline. The tags are meant to fire the following script and scroll to the appropriate ...
0
votes
1answer
80 views
How to bring the selected thing in middle in scrollview?
I am developing an application in which what i want is when i select something from scroll
view, the selected thing comes in the middle of the scroll view and one more thing which i
did not ...
1
vote
1answer
2k views
jQuery Detect Bottom of Page on Mobile Safari/iOS
I basically want the same functionality as facebook, twitter and all those other "infinite" scroll sites work, the code im using at the moment is
jQuery(document).ready(function(){
$ = jQuery;
...

