Most voted "uitableviewcell" questions
16 questions
Sort by count of
-
4
votes1
answer70
viewsUitableview with customized and resizable Uitableviewcell
I’m creating a chat for Ios in Objective C, and I use custom Uitableviewcell. My difficulty is in resizing Cell as the text in the chat, as the image: And this second screen, it’s like this, with…
-
3
votes1
answer233
viewsDifferences between tableView.dequeueReusableCell and Uitableviewcell
Good night, I would like to know what is the difference between the parameters below, if one is but effective than the other, less chances of error etc. From what I see in practice both do the same…
-
2
votes2
answers180
viewsHow to delete Tableviewcell as a Swift Dictionary
I’m trying to rule out a TableViewCell using Swipe to delete style, but I cannot delete Cells. Cells are being created by a dictionary that creates each with the key as title and value as details.…
-
2
votes1
answer74
viewsIOS - How to create Custom Cell for Tableview?
I want to make a custom cell for my Tableview. But it is presenting problems that I am not able to solve. It worked normally when I did with the standard cell, but when I did custom gave problem I…
objective-c mobile xcode uitableview uitableviewcellasked 8 years, 9 months ago CristianCotrena 1,145 -
1
votes1
answer58
viewsHow to use didSelectRowAtIndex?
I would like to know how to use didSelectRowAtIndex, more specifically I would like to know how each Row of my UITableView calls a ViewController specifies. In my code below, in case would like each…
-
1
votes1
answer58
viewscall the properties of a Tableviewcell in a Viewcontroller
I’m trying to create a tableview with Cell dynamic according to the text inside it, and I’m trying to add the height of the label to the size of Cell but when I call the label in Viewconrtoller it’s…
-
1
votes1
answer263
viewsSet invisible button after running Uitableview
I have a question in my Uitableview, I put a button on the Cell of a Tableview. cell.btnDownload.tag = indexPath.row; [cell.btnDownload addTarget:self action:@selector(btnDownloadClick:)…
-
0
votes2
answers244
viewsHow to make a Uitableviewcell work like Facebook Messenger for iOS?
How to create a UITableView, where cells keep the text bold until touched, and save this change? For example, when we receive a message on Facebook the text on UITableViewCell is in bold, after…
-
0
votes1
answer54
viewsProblems starting Uiimage with image path from core data
I downloaded an image and stored it on disk. After downloading the class inserts the image path into the core data, this string:…
-
0
votes1
answer28
viewsAlternative to padding-nevative in table
I have a table, where I need to decrease the padding of the lines of the same. If I could use one padding-bottom: -XXpx; e padding-top: -XXpx; would solve my problem. However, it is not possible to…
-
0
votes1
answer542
viewsuitextfield check with only number
I am creating a tableview with Cells custon via xib and Uitableviewcell and I have a Cell that has only one textField and I want to do a check of number and number for that textfield but I don’t…
-
0
votes0
answers41
viewssplit function on a label in Swift 4
Good evening, I am receiving a json from a webservice and in a given field json passes me the data separated by "|" as you can see below i need to break the line in each | of the json field. I…
-
0
votes1
answer70
viewsUitableviewcontroller cells are blank/missing when scrolling the Tableview
I’m having a problem with my tableviewcontroller, as I update some data on a textfield or roll down it goes disappearing with some cells, if I roll up and down hiding the missing cell it comes back…
-
0
votes0
answers96
viewsTableview in Uiview in Swift 2.0
I’m trying to create a table within a view. So that when the user is in view1 and presses a button open a smaller view2 inside view1 and choose one of the table data and loading transports the…
-
0
votes1
answer136
viewsPass array from one Uitableview to another Uitableview
Talk guys! I’m having a hard time getting the value of a array in a uitableview and move on uitableview. No error appears, but do not print anything on the console when accessing the next…
-
0
votes1
answer28
viewsHow to make not all cells in a tableView editable?
I have a tableView where the user can delete the cells he selects. In my case the first cell of the tableView cannot be deleted by the user. How do I make only the first cell of the tableView not…