UITableView is a class used for displaying and editing hierarchical lists on iOS.
0
votes
0answers
11 views
UITableView - reusing cells while in editing mode
I'm finding that if you set a table view into editing mode, upon scrolling the table after deleting a row the cell edit control (the red minus sign on the left) is in a random state (turned vertical ...
0
votes
0answers
23 views
This is weird. My tableviewcell won´t be selected unless i press it for 3 second
I have a UITableview wich i have configured, but when i press one of the cells, it wont be selected. To select it I have to press it for about three seconds and then release it. Is there some sort of ...
0
votes
1answer
24 views
Image on top of UIlabel?
I'm trying to add title3 above the picture and into the black box on the left side.
Such as this
I'm not sure why it's not working but any help would be greatly appreciated. I'm pretty new to ...
0
votes
3answers
34 views
iOS UITableView height issue when 3.5 inch simulator display
A UIViewController with a navigation bar, a toolbar and a admob banner. Below is the code to calculate the height of the UITableView by removing the height of the admob banner, navigation bar and ...
0
votes
0answers
11 views
Setting a uiimage with texture in uitableview section headers works on simulator but not on device
Problem:
I want to make the uitableview sections opaque with a texture background.
So I put an uiimage with a texture in the header of the sections.
Simulator:
Everything works as expected: The ...
0
votes
2answers
32 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
35 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
16 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
21 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
18 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
13 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
1answer
5 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
50 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
54 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
49 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. ...