Tagged Questions
UITableView is a class used for displaying and editing hierarchical lists on iOS.
4
votes
0answers
533 views
get the string used by localizedStandardCompare when it did a comparison
I'm sorting an array by using localizedStandardCompare:, which gives me the objects sorted in the correct, localized order. Now I want to use them in the index for a UITableView, which means I need to ...
3
votes
0answers
175 views
How could tableView:commitEditingStyle:forRowAtIndexPath: be called with a nil indexPath?
I finally tracked down a weird crash. It is caused by tableView:commitEditingStyle:forRowAtIndexPath: being called with a nil indexPath. But how can it be?
- (void)tableView:(UITableView *)tableView ...
3
votes
0answers
375 views
Adding a UISegmentedControl button to a toolbar within UITableViewController
I am trying to add a toolbar with a UISegmentedControl appearing at the bottom of my view.
I am within a UITableViewController, which is embedded in a navigation controller which is embedded in tabbar ...
3
votes
0answers
265 views
UITableView keep the scroll at the correct position while updating NSFetchedResultsController
I am developing an iOS application that mainly use a UITableView.
It retrieves pages of articles from a server. We have got >25000 articles; so I have implemented a pull-to-refresh and infinite ...
3
votes
0answers
207 views
No content attribute for UITableView in .xib
(XCode 4.2, iOS 5)
In order to reuse a tableview (with a navigation bar and edit/add buttons) I created a UITableViewController subclass with it's own .xib. However, when I add a UITableView to my ...
3
votes
0answers
443 views
Separator of UITableViewCell does not hidden in iOS5
in TableView Controller, viewWillAppear, it is set as:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
self.tableView.separatorColor = [UIColor clearColor];
Everything works ...
2
votes
0answers
47 views
UIScrollview jumps off screen when switching between views
I have a Tab-bar app with a scroller view in the first tab and some other stuff in the second one. The scrolling works perfectly fine, but if I scroll down and then switch to the second tab and then ...
2
votes
0answers
41 views
Creating table with checkmarks using buzztouch
I am creating an iOS app using BuzzTouch. I would like to create a table with checkmarks. When user click on any row, a checkmarks appears right to that row and by clicking again on the same row, it ...
2
votes
0answers
74 views
iOS - UITableView Index: Is there a way to highlight the selected alphabet?
I've a table view for which I've provided/turned on the Alphabetical Index on the right side. This does help in jumping through the content.
Now I was wondering whether there is a way to highlight ...
2
votes
0answers
44 views
How can I add multiple cell.textLabel.text in Array?
I have make multiple selection like below in UITableViewController using. This is delegate method of UIAlertView, in which there is UIAlertView contains Table.
Now How can I add particular selected ...
2
votes
0answers
314 views
How to add Pan Gesture to UITableViewCell
I am trying to add a pan to my UITableViewCells and I have the following code. For some reason the handlepan method is never being called even though I referenced the class from the storyboard and set ...
2
votes
0answers
132 views
UITableView, InsertRowsAtIndexPath Handling Multiple Requests
I have a method named "fetchEntries"in my tableview controller that is putting data by fetching from the web service. It is also taking a parameter named "pageNumber" which i am incrementing by ...
2
votes
0answers
78 views
change UITableViewCell of a FBFriendPickerViewController
How is it possible to adjust an UITableViewCell of the tableview of a FBFriendPickerViewController with the Facebook SDK v3.2 for iOS?
2
votes
0answers
156 views
I set UITableView.contentsize,but the contentsize doesn't change instantly
I set UITableView.contentsize, but the contentsize doesn't change instantly
only I call the reloadData method next time, the contentsize of the view seems to be changed.
Which method should I call if ...
2
votes
0answers
168 views
UITableViewCells scroll horizontally using auto layout when changing to portrait mode
I am creating a screen that is primarily a UITableView with cells that have differing controls and layouts. I had the tableview working great until I switched to portrait mode where it allowed the ...