Tagged Questions
0
votes
0answers
7 views
UITableView/TableViewCell repeats in the background
I have a Tableview which displays data retrieved from a server. The data loads fine, but when I display the data as text in the tableview cell, it seems to be duplicated in the background when ...
0
votes
1answer
72 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
1answer
60 views
Custom cells reload issue while scrolling UITableView
I have a UITableView where in i am using a custom UITableViewCell. All is well until the UITableView is scrolled. As soon as i scroll the UITableView the cells in Second section starts showing the ...
0
votes
2answers
26 views
UITableViewController, scroll boundries off when adding objects
Im working on an iphone project with storyboards in Xcode, and I have a tableview that lists cells loaded from an array it owns. Through push segues I load 2 other views for adding an item to the ...
0
votes
0answers
33 views
UITableView with large images “shaking” on iPhone 4S
I built an app that parses some JSON asynchronously and downloads images to fill a table view.
This table view works fine on an iPhone 5 or in the simulator but the images are "shaky" on an iPhone 4S ...
0
votes
0answers
33 views
Delegate UITableView Delegate to whole Parent View
I currently have a UIView that has some UITextFields as well as a UITableView as a subview.
How can i override the UITableView scroll feature in such way that when scrolling, even outside the table, ...
0
votes
3answers
89 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
2answers
137 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 ...
0
votes
3answers
88 views
iOS: uitableview redraw objects on first cell to bottom cells
i have a uitableview with custom cells.. with normal code
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString ...
1
vote
1answer
63 views
SegmentControl doesn't move with TableView scroll
The scene currently in view is "RunTestViewController". As you can see there is a segment control embedded.
Everything runs fine, the segmentcontrol works, however when I scroll the segment control ...
2
votes
3answers
123 views
Make a UITableView scroll from top to bottom over a set period of time?
I'm trying to get my UITableView to slowly scroll downwards at a steady speed, which I can specify. I've used scrollToRowAtIndexPath, but whether or not I choose to animate it, it's an almost instant ...
0
votes
0answers
67 views
Dynamic UITableView not scrolling
I have looked through a few posts on this but none really solve the issues I'm having.
Quite a few suggest:
self.tableView.scrollEnabled = YES;
However, this doesn't enable me to scroll.
The ...
0
votes
0answers
99 views
scroll table view while shrinking upper UIImage
I don't know if the title of this post is much descriptive so I'll try to explain it in more depth. I have this UserProfileViewController:
The top part is an UIImage that has those buttons as ...
2
votes
2answers
183 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
0answers
25 views
How to scroll UITableView to make the maximum room for a cell while the cell above is a little bit visible?
I have some expandable long cells in my table view, which are initially in collapsed mode. When the user taps on a collapsed cell, I expand this by changing the cell's height and then calling ...
0
votes
2answers
198 views
UITableView is lagging a cell containing a UITextView is displayed the first time
I'm running into issues with a UITableView that lags while scrolling when specific cells will move to superview.
I've written my own IPFormKit for an easy way to create beautiful input forms with ...
-3
votes
1answer
110 views
How to set ios UITableView loop scroll?
I have 10 cells add to tableview, I want to scroll the tableview no end, the 10 cells cycle display in the tableview, like the first page of the app "expedia".
Please help me.
0
votes
4answers
695 views
Can't scroll UITableView to bottom
EDIT
This is what happens, so you can see: http://youtu.be/v1HrxYhzJZY.
This is my scenario:
I have a UITableView with 5 sections and 12 cells. This view is opened with a push segue and everything ...
0
votes
2answers
135 views
UITableView does't scroll after go to another viewcontroller from searchbar result table and come back
I have a UITableViewController that show data in cells. In viewWillAppear I add a UIView to tableHeaderView with this method self.tableView.tableHeaderView =headerView;
In headerView I add a ...
0
votes
1answer
99 views
ScrollToPosition always scrolls to the last row in my section
I have a tableview with sections. Each sections is a month. So I've section for June, July,August,...
What I want to do now is when the tableview shows up, it immediately scrolls down to the month of ...
0
votes
1answer
86 views
Scroll to certain point in tableview
I have a tableview that is filled up with dates. My section header is the month name. You can see my tableview over here.
What I want is that it scrolls to the section of the month of that moment. ...
0
votes
1answer
550 views
UItableview scrollToRowAtIndexPath not displaying last row correctly
I have a tableview with custom cells with dynamic cell heights depending on the cell content.
My problem is the following, when I ask, programmatically, in the viewDidLoad, to scroll to a given ...
0
votes
1answer
87 views
Apples keyboard appears then scroll code sample does not work correctly
I have a UITableView with a navigation bar on top. I have several text fields in the cells and if i click in the cell at the bottom the keyboard hides the text field. So I googled and found this link: ...
0
votes
1answer
186 views
UITableView reloading data using NSTimer while scrolling table
I have a simple UITableView containing a few rows. Every row contain a countdown timer represented by UITextLabel. When row is selected, countdown starts. Countdown fire date is set by ...
0
votes
3answers
799 views
iOS - tableview disable refreshing when scrolling down
I'm making a simple "Add to favorites" feature which is a UITableViewController. When the user selected a cell, I set the color on gray and disable the selectionStyle
- (void)tableView:(UITableView ...
0
votes
1answer
109 views
Scroll to newly added uitableviewcell ios
I am adding rows to a table view dynamically using reload data. I need the table view to scroll with the newly added cell being on top of the view. In which event do I do this in and how ?
0
votes
1answer
111 views
UITableView Scroll when new cells are added
In my app I have a pull down to refresh feature. Basically what this does is it adds some more cells to the top of my UITableView. However when I do this the screen automatically scrolls down. I want ...
0
votes
0answers
86 views
UItextView on top of tableView
I'm using a third party library called UAModalPanel.
https://github.com/coneybeare/UAModalPanel
it's a really useful library and works really well on my other projects.
Today i was trying to ...
0
votes
1answer
168 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
3answers
683 views
UITableView Doesn't Scroll (iOS)
I have created a UITableView programmatically and am finding that it does not scroll. This is the first time I've created a UITableView programmatically as opposed to through Interface Builder. Is ...
0
votes
2answers
330 views
UITextField into UITableViewCell auto reset when scroll down and turn back?
I have more UITextField into UITableViewCell but when I scroll down and I turn back the UITextField is empty. There is a way for not auto reset?
This is the code:
-(UITableViewCell ...
2
votes
1answer
765 views
Overlay not scrolling with UITableView - iOS
I have a UITableView class that uses the following methods to call a loading overlay when going to the next screen. The problem is that this loading screen does not scroll with the list... So if you ...
0
votes
0answers
169 views
sectionForSectionIndexTitle not scrolling
i've searched the different questions and haven't found the same problem.
I have a UITableView that is populated with sections and rows.
So far so good.
I've implemented both ...
1
vote
1answer
366 views
UITableView Flicker Effect
There are about 100 cells displayed in UITableView. So , when I scroll down or up too fast I see a flicker effect over UITableView.
I have also re-used the cells and I am not using reloadData in my ...
0
votes
1answer
88 views
How to scroll to specific Cell (determined by its label) in UITableView
i wanted to know if its possible to scroll to a specific Cell (determined by the Cell's label and not by the cell's rowindex) in an UITableView?
I need this cause my data is loaded on the fly and i ...
1
vote
2answers
468 views
Scroll custom UITableViewCell to right above keyboard?
Currently I have a UITableView with custom cells and in each cell there is a UITextField, the problem is that sometimes the UITextField is covered by the UIKeyboard.
So right now I have the Y ...
0
votes
1answer
439 views
Scroll UITableView change data on UITextField stored in NSUserDefault
I've a TableView with TextField for each row. The TableView is composed by two section.
When the user tap on return button of KeyBoard, I set the text of TextField on NSUserDefault.
In the ...
0
votes
1answer
446 views
iOS : Transfer Scroll Gesture on a View to Another
I have a screen with two views :
An UITableView (tableView) on the right hand side, that takes half of the screen
An UIView (controllerView) on the left hand side that takes the other half of the ...
0
votes
1answer
84 views
UITableViewController Zombies On Scroll
Happy Friday. Having an interesting time debugging a zombie issue. I have a UITableView that gets its data source from an NSMutableArray loaded with Word objects. (See class below). When the app ...
1
vote
1answer
720 views
iOS UITableView scrollToRowAtIndexPath behave incorrectly
I have a problem with UITableView, particularly with scrollToRowAtIndexPath. Here we set a section-header-height and row-height respectively. Later on, when a keyboard is shown, I've resize the ...
2
votes
3answers
634 views
How to make stationary background view in UITableView?
I'm trying to add a view behind my grouped UITableView. Unfortunately, whenever I scroll, the background view moves as well. This happens even when I use [self.view insertSubview:backgroundView ...
2
votes
2answers
2k views
UITableView not scrolling to the bottom
I have a UITableView (on a UIViewController) on which I want to ad an iAd banner on the top, but below a toolBar I already have on the top. I'm trying to shift the the tableView (in reference to the ...
0
votes
3answers
65 views
UITablwview scroll is getting hanged
My app is basically a tab based one .in the first tab i have a tableview the data is loaded from a web server .my problem is that the tableview scroll is getting hanged
1
vote
2answers
463 views
UITableView Misalignment with Navigation Bar (cells get stuck underneath on rotate)
I'm using the new Storyboarding feature in Xcode 4.2, and I've run into a problem where my UITableView seems to forget that there is a Navigation Bar upon device rotation. When the device is rotated, ...
3
votes
1answer
326 views
UIView animation while scrolling a table
I have a UITableView in an iPad, and its right half side is covered with a view.
What I want is: when the user scroll the UITableView, I want the covering view to slide (with an animation) to the ...
0
votes
2answers
532 views
Can't get UITableView list to scroll in iPhone simulator
Is there a simple explanation for why a table will not scroll in the iPhone simulator? I have a tab bar application that I built with the standard template. I created a UITableView in the second tab ...
0
votes
1answer
419 views
Crashes if uitableview reloaddata During Scrolling
I have a UITableView with a refresh button in toolbar.
If the TableView is stopped and I press refresh button calling reloaddata everything work fine.
But Im scrolling the tableview and press refresh ...
0
votes
1answer
544 views
iOS UITableView Cell loads incorrectly after scroll?
I'm having 2 UITableView in a view and I added the UITableViewCellAccessoryDisclosureIndicator only at the 2nd table row 5 and row 7.
But after scrolling the 2nd table down (which row 1 disappears) ...
0
votes
1answer
82 views
Show the complete sections of rows in my table view after scrolling is done
i have table view(it has sections). at a time it will show only 4 images/rows(the height of table View is set according to that). when the scrolling is done, it will display 5th row half section,6th ...
1
vote
3answers
1k views
UITableView scrolling issue
I have a TableView with custom cells, some of which have images and others don't have. Everything works fine but when I start scrolling the cells aren't showing correctly (the images are placed in ...

