Questions tagged as 'uitableview'

1
answer

Set Invisible Button After UITableView Execution

I'm having 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:) forControlEvents:UIControlEventTouchUpInside]; Th...
asked by 23.05.2016 / 06:26
1
answer

UITableViewController with Swift and JSON Displaying repeated values

I'm having trouble popularizing my UITableView with JSON . I separated some pictures to show the problem. Note that in the first% w_ of% repeated values appear and in the next shows the same value. First Table : SecondTable:...
asked by 13.04.2016 / 22:42
1
answer

calling the properties of a TableViewCell in a ViewController

I'm trying to create a tableview with the dynamic cell according to the text inside it, and I'm wanting to add the height of the label to the size of the cell, but when I call the label in the ViewConrtoller it is empty and when I call TableView...
asked by 04.08.2015 / 16:37
2
answers

How to feed a tableView of a screen with information from another screen?

Good evening, I have 3 screens in my app to buy passwords, the last one has a tableView powered by the passwords purchased by the user on a previous screen. He must choose a password and it appears in the summary of his request on the next scree...
asked by 13.11.2015 / 03:08
1
answer

Swift - Activity indicator on Table view

I am trying to implement a Activity Indicator on a Table View but it is not working properly. It appears under the Table Cells Here is my code and the image of how the indicator appears. import UIKit class SelecionaPai...
asked by 18.04.2016 / 21:26
1
answer

Difficulty loading sections in cellForRowAt

I'm having a little difficulty in implementing indexes (A through Z) in my app ... See the structure below, what should I do to properly load indexPath.section ?: struct EmployeeDetails { let functionary: String let imageFace: S...
asked by 10.04.2017 / 16:18
1
answer

Pass value from tableview to tabbar

Hello, I'm developing my first app and I have a question. I have a tableview, and I would like the indexpath.row to be visible in the 2 viewcontroller of a tabbar, to load a label. I tried to do it as below but it did not work. override...
asked by 28.07.2016 / 16:19
1
answer

UITextField 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 of characters and numbers for this textfield but I do not know how to do that.     
asked by 20.08.2015 / 17:18
1
answer

How to control the rows between the main UITableView and the UITableView of UISearchBar?

I'm implementing a table with a search field, and I'm using UISearchBar . I have two variables in the app: a NSMutableArray for the original data, and another NSMutableArray for the filtered data. When the table is load...
asked by 06.11.2014 / 17:45
2
answers

How to make a UITableViewCell work like Facebook Messenger for iOS?

How do I create a UITableView , where cells keep the text bold, until they are touched, and save this change? For example, when we receive a message in Facebook, the text in UITableViewCell is in bold, after touching the cell and...
asked by 30.10.2014 / 21:31