UITableView is a class used for displaying and editing hierarchical lists on iOS.

learn more… | top users | synonyms (1)

0
votes
0answers
4 views

Searching Table View with Subtitles in Cells

I have a table view and can search for the titles. I'm wanting to add subtitles to the cells, which I know how to do, but I'd like to be able to search by info in the subtitles as wells as titles. ...
0
votes
2answers
32 views

UITableView deleting row is crashing in iOS

I am trying to delete row from UITableView in iOS. In UITableView , i show files list that located in document directory. I want to delete file from document directory. Here is the code for delete. ...
-2
votes
0answers
14 views

How to page count in depaneds on contant in tableview?

the most commonly used views in iPhone applications is the Table View, which you use to display lists of items. Users can select a visible item, or tap to display more information. But show data in ...
0
votes
2answers
15 views

UITableView UIRefreshControl Does Not Show Its View The First Time

I have added the functionality of UIRefreshControl in my project that uses a UITableView. The app works by fetching entries from a web service to a tableview. Below is the code i have used to add ...
0
votes
1answer
15 views

How to populate an email body from UITableView data?

I have a registration type form in a static cell UITableView, and when the user presses the "submit" button, I would like the information in the cells to be sent as an email to a specific email ...
0
votes
2answers
10 views

Hyperlink in uitableview footer

I am using InAppSettingsKit for my settings and want to add a company hyperlink in the table view footer. I have successfully add a uiwebview in a section header (which is in the bottom of the table ...
0
votes
0answers
3 views

UIToolbar with Prev/Next utilizing multiple textfield in multiple sectioned tableview storyboard

I need help with adding logic to get the static table view cell section index. I have a plain static UITableView with 2 sections, in each section there are 2 cells with textfields. I implemented a ...
0
votes
4answers
49 views

Unrecognized selector sent to instance when adding a UITableView as SubView

When i've created a UITableView in the code en add it as a subview in the code it is all working fine. There is green tableview visible. Example of the code i've created for that. - ...
0
votes
3answers
51 views

How to block duplicate fields on tableview in iOS?

I tried load an array from web service and display on tableview, But I have a problem. I dont want display duplicate fields on tableview. I want display only one field on table. Now I have : 1234 ...
1
vote
4answers
48 views

Which method will be called when we hold the UITableViewCell

When we select UITableViewCell than - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath called. But which method will be called if we hold the UITebleViewCell. ...
0
votes
1answer
28 views

Unhighlight row returns a max int on indexpath when user scrolls table with a cell highlighted

I have a UILabel as subview of my cell. When user highlight a cell the label text change it's color and when the cell is unhighlighted the color changes back, just like an usual cell textLabel. The ...
0
votes
1answer
32 views

Labels duplicating?

I'm trying to add a timer on the side of the thumbnail but the UIlabel for the timer is always duplicating when I scroll. It ends up like this. Any help would be greatly appreciated. This is how ...
0
votes
1answer
10 views

cell.selectedBackgroundView covering up UIViews in a cell

I have a table. Within each cell of a table, I created a simple bar graph (which is just 2 UIViews with background filled). I have set cell.selectedBackgroundView to an image. When the cell is ...
1
vote
1answer
47 views

Shrink UITableViewCell

I found this: http://soulwithmobiletechnology.blogspot.it/2011/06/how-does-uitableviewcell-reorder.html on the web and I think it's very useful, indeed I implemented it into my app. Now I will ask you ...
0
votes
1answer
9 views

Reloading UITableView while downloading images via afnetworking

in my cellForRowAtIndexPath method I've got some code to download images asynchronously via UIImageView+AFNetworking category But as far I understand cellForRowAtIndexPath method is called every time ...
0
votes
2answers
37 views

iPhone UITableViewCell SwipeGesture

I wanted to simply animate custom view in a custom table cell by swiping left or right in that cell. I am loading the cell from the xib. This is the code I used to populate the cell from the xib. - ...
0
votes
1answer
8 views

How do I set a conditional breakpoint on a specific table row using lldb?

In Xcode, I want to breakpoint on a specific table row request in the method tableView:cellForRowAtIndexPath: using lldb: For example, let's say I want to breakpoint on the 44th row of ...
0
votes
1answer
27 views

Change UITableViewCell Height after creation

I'm working on an app which uses tableviews which displays content fetched from a webservice. In some cells I may need to display an image with unknown dimensions. To do this, I have an UIImageView ...
1
vote
2answers
42 views

How to close another expanded section when second Section is clicked

I am creating an app that contain the expandable section. I have implemented that using this tutorial. But now i want to close first expanded section when i clicked another section. Can someone help ...
0
votes
0answers
5 views

Why tabbar hiding when push the UIButton

(IBAction)parsing:(id)sender { UITabBarController *tabBarController = [self.storyboard instantiateViewControllerWithIdentifier:@"tablo"]; // ViewController1_1* t = [self.storyboard ...
1
vote
0answers
10 views

UITableView Scrolling crashes(segmentation Fault 11) only when tested via instruments tool

I use a UITableview to load array of images in a UIImageView embedded in the tableview cell and also load text to UILabel at each row in iPhone.The array size is around 40+. when I scroll UITableView ...
0
votes
2answers
23 views

UITableView bottom cells are hidden below screen

I am building a table view using a storyboard as part of a navigation controller flow. Everything works well as long as all cells can be shown on one page. The problem is that if there are more cells ...
0
votes
1answer
20 views

UITableView with custom cells

I have a UITableView with custom UITableViewCells, which use a NSDictionary to populate their labels and images. My problem is, I have a NSArray returned from a server, with the information for each ...
1
vote
2answers
44 views

UITableView is not using programmatic custom UITableViewCell

RESOLVED: see bottom of question. I am using a custom UITableViewCell for my programmatically defined UITableView. The custom UITableViewCell currently has a red background and nothing else. Here is ...
0
votes
2answers
45 views

UITableViewController loads all my cells when scrolling

The Situation: I have a view controller that has a table view, which takes its data from an array. As the data of that array is quite slow to load, i've the elements load themselves on demand ...
0
votes
3answers
49 views

Understanding UITableView dequeueReusableCellWithIdentifier - returns cell even on the first call

I'm having trouble understanding how this works. I've read many threads on SO about it - such as UITableView dequeueReusableCellWithIdentifier Theory and How does dequeueReusableCellWithIdentifier: ...
0
votes
1answer
22 views

UICollectionView in UITableViewCell - touches only received in a portion of view

I'm having an issue receiving touches in UICollectionViews contained within UITableViewCells. The desired effect is a UITableView with n rows of horizontally scrolling UICollectionViews. The view is ...
0
votes
1answer
13 views

checkbox persists after a row is deleted from a table

I have built a checkbox feature on a table using this page: http://www.carrotcoded.com/2012/12/02/uibutton-within-uitableviewcell-checkbox/ This works fine, and I can check and uncheck boxes. ...
-4
votes
2answers
21 views

Tap on a UITableViewCell and design another UITableViewCell under the first

I'm developing an application that needs to show a UITableViewCell after tap on a first UITableCell. I will post two image to explain you what I've to do: I've a UITableView like this: ...
0
votes
2answers
24 views

UITableView and popover : dismiss popover and select row

I have a little problem. I have a table view and when the user select a row, a popover is display with it contents. But if I want to select another row in the table view I need to tap once for dismiss ...
1
vote
3answers
71 views

Passing value from selected row to view controller

I tried pass value from selected row to view controller. Log return null value in new view controller.Where is my mistake ? 2013-06-18 17:28:59.394 App[1790:c07] ID is Here: 35023 2013-06-18 ...
0
votes
1answer
30 views

TableView Showing Map Annotation Titles and Subtitles

I am trying to create a table view that shows a list of my map annotations. Each cell would contain the name(title) and address(subtitle). I'm then going to add a search bar to the table view. When ...
0
votes
1answer
17 views

get each cell textView data when click on button

I have a UITableView with UITextView in all the cells. I do have a bar button .On editing any of the UITextView and when I tap on the bar button all the UITextViews data must be stored in the form of ...
-4
votes
0answers
40 views

DatePicker and TableView ios

I have a tableview with 2 rows. One of the rows is goTime, and the other is returnTime. Below the tableview i have datePicker that change 1 of the lables in the rows. I want the datePicker change the ...
-3
votes
1answer
19 views

UItableview reload methode is calling before another methode

I want to fill UItableview from server data. I use below code but tableview is loading first and then methose. [self GetReaction:(@"12")]; // This method fetch the data from server. [_tblLines ...
0
votes
3answers
63 views

Displaying Coredata in UITableView

I'm trying to create a UITable view to display a datasource saved through core data. I would like each row to be named after one of the attributes (in my case the name of the song). I have ...
1
vote
2answers
35 views

UITableView bounce bottom edge only

Is it possible to bounce a UITableView on the bottom side, but not the top? If so, please show me code.
0
votes
1answer
6 views

UITapGestureRecogniser not working with UiTableViewCell

I am working with UITapGestureRecognizer for doubleTap on a UITableViewCell. So I added the gesture in this way in CellForRowAtIndexPath. UITapGestureRecognizer *m_doubleTap = ...
0
votes
2answers
25 views

How to position a UITableView correctly at a fixed point from the top of the view

I'm trying to position a UITableView 200 points from the top of the view. I'm able to do that with the following code. The problem I have is that half of the last row doesn't scroll and is ...
0
votes
0answers
7 views

iOS: UITextView increases text size after modal segue

I have the UITableView (1). From there I can click on a cell to get to UITableView (2, modal segue), where a UITextField automatically gets activated for text input. When I now close this modal called ...
0
votes
2answers
47 views

Observe changes of instance variable in Objective-c

I have a UITableView with a property(strong, nonatomic)NSMutableArray *currentContent, I also have a property(strong, nonatomic)NSMutableArray *cellHeights to keep track of the cell heights cos the ...
0
votes
1answer
71 views

How to use data from one JSON request for a second JSON request?

I have been successful in parsing JSON from an API and displaying it in a tableview. The data I am receiving is a user's classes that he is enrolled in, however the data I am receiving is only the ...
0
votes
1answer
29 views

Add an detail view to core data application

I am creating a detail view for application which is populated by Core Data. I have used Core Data to pre-populate the uitables as shown in Ray Wenderlichs tutorial. Unfortunatley he stops short of ...
0
votes
1answer
25 views

Trying to drag a UIImageView up and down a UITableView

I have a UITableView that has a UIImageView which traverses it one row at a time at the click of a button (up/down). What I would like to do now is allow the user to drag the UIImageView up or down ...
-4
votes
2answers
25 views

How to create a JSON file for use in UITableView [closed]

How to create a JSON file for use in a UITableView, so you can remote the TableView from the web?
1
vote
2answers
39 views

Take data from a static label and use it to populate tableView

I'm working on an application that has multiple views, taking data from one view and storing it in a table in another. I have labels that are updated with data when a calculate button and a button ...
0
votes
1answer
21 views

UITableView/UIScrollView altering the speed of bounce after finger lifts up

When I scroll past the top cell (going up) in my UITableView, I release my finger and the UITableView returns back to it's original position with a nice bouncing animation. Is there any way to change ...
0
votes
1answer
37 views

UIAlertView events

I'm trying to write a simple message alert system, with a UIAlertView displaying when priority messages are collected from a server. The messages are sent as a Tab separated string in the following ...
0
votes
1answer
25 views

UISwipeGestureRecognizer in viewForHeaderInSection

I'm trying to add swipe left recognition to the table headers only. Doesn't seem to work- tried everything found on stackoverflow and web. Works fine on the actual table cells, but when adding it to ...
1
vote
1answer
25 views

UITableView and swipe to delete allows multiple rows to be highlighted

I have some odd but only mildly annoying behaviour with a UITableView that isn't inside a UITableViewController. It's very basic and all plumbed in with the minimal methods required. In IB it's set ...

1 2 3 4 5 322