Questions tagged as 'uitableview'

3
answers

Display a list of items in horizontal Swift

I'm making an app that shows the weather information. I have the view divided into 3 sections: 1- A Uiview with information about today's weather 2- A UITableView with the following days of the time 3- A horizontal table with time by...
asked by 24.06.2016 / 10:37
1
answer

TableView reactive in swift

I was thinking about creating a UiTableView that follows the pattern MVVM (Model-View-ViewModel) to be able to make the data in the table refresh automatically when there is a change in these, be it a new element, an update or a deletion wit...
asked by 22.02.2018 / 17:25
2
answers

uitableviewcell does not fit well on the ipad

I'm having problems in the iPad view, I'm trying to make a table where each cell will be made up of textLabel and a button UIButton , when I try it on an iphone the view goes well, but when I I try with an iPad it comes out in the f...
asked by 23.01.2017 / 16:53
2
answers

Scroll when the keyboard appears

I have a question about how to handle when the keyboard comes out in an iOS application. It turns out that in Spotify on the iPhone when you are going to register, you select a field and exit the keyboard. The registration button is covered....
asked by 31.05.2017 / 16:29
1
answer

problem with UITableView and moving from one view controller to another

Hello friends, the problem is this I am trying a taleView containing divisors and in those divisions different things and when one of them is touched, I would send it to another view, that is to say one second the problem is that when they are t...
asked by 22.07.2017 / 01:40
1
answer

dynamically fill action sheet Swift 3

I am looking for a way to make a floating list (TableView inside AlertView) with data from a list of objects and that when I click on an element it gives me the reference to the selected object. For this I am using an action sheet and a for l...
asked by 01.06.2017 / 05:53
1
answer

Define auto height in UICollectionViewCell

Is there any way that the height of a UICollectionViewCell suits the content as in UITableViewCell ?? Example: In the UITableViewCell I have this code so that the height adapts to the content: self.tableView.rowHeight =...
asked by 07.07.2016 / 11:21
0
answers

Join two TableView in 1?

I present a form that is connected to 2 tables in the BD, my question is: can one form a single table ?, for the moment the form would handle it in two tables, different Code: **@FXML private TableView<Productos> **tblViewProductos**; @F...
asked by 22.06.2018 / 19:01
1
answer

UITableView Programmed with UITableViewCell in Storyboard

I usually do the table-cell interfaces in swift programmatically. I generate my ViewController that has an instance of UITableView, in turn I generate another class that inherits from the UITableViewCell and I initialize it in the tableView: cel...
asked by 20.06.2018 / 09:22
1
answer

How to delete row in tableView with CoreData data

I'm making an app that stores information in CoreData and shows it to the user in a table. I added the function of deleting rows when swiping, but I am having problems to achieve the result. My code is this: override func tableView(_...
asked by 21.12.2017 / 12:04