tableview Questions
13
Solved
In my Java Desktop Application I have a TableView in which I want to have a column with CheckBoxes.
I did find where this has been done on Jonathan Giles's website http://www.jonathangiles.net (the...
1
Solved
Although I've searched, I'm confused about how best to approach this.
I have a tableView where the bottom cell is an input to the list, in the same way apple reminders work. When there are too man...
10
Solved
I'm making a chat like application, where the tableView displays dynamic height cells.
The cells have their views&subviews constrained in the right way
So that the AutoLayout can predict the ...
Disputatious asked 17/1, 2019 at 23:0
3
Problem
I want to add data dynamically to a TableView and scroll to the new data's position. But when the rows in the TableView reach the ViewPort size, I get this in the console:
Apr 18, 2015 ...
1
I know there are 20 threads about this, but nothing really has worked for me.
I have 2 models which I want to populate the tableView from.
One is Student with a surname, name and stuff.
The seco...
3
Solved
I've been trying to load a TableView with data queried from a database, but can't seem to get it to work.
This is my first attempt at trying to populate a TableView with database query items – in c...
5
JavaFX's TableView has a placeholder property that is basically a Node that gets displayed in the TableView whenever it is empty. If this property is set to null (its default value), it appears as ...
5
Solved
During swype deleting (most importatnt lines of this method):
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath...
Pennywise asked 23/1, 2012 at 16:11
3
Solved
I have a tableview with 2 sections. I want only one row to be selected per each section. Right now I have it working to select one row, but it is for the entire table. Ultimately, I want 2 rows sel...
4
I want to use search bar in my app.I am trying to use it but exceptions are coming . I have got an array of dictionary called member [[String:Anyobject]] and from this i have taken out the name and...
4
Solved
I am trying to select/focus a row of a TableView programmatically.
I can select a row, but it is not getting rendered as focused (not highlighted). I have tried many combinations of the code below...
4
I have a tableView in a Swift iOS app that allows the user to re-order the rows. An Edit button is tapped, rows can be re-ordered or deleted, and the Edit button (which now reads Done) is re-tapped...
4
Solved
I'm trying to do maybe one of the simplest and more confusing things for me until now
I wanna develop my own App , and in order to do it I need to be able to passing some information depending of w...
Traumatize asked 10/2, 2015 at 11:35
2
Solved
I have a tableView with custom cell.
I also have a .swift-file for this custrom cell.
In this file I have a function which doesn't have a sender:AnyObject in entering parameters.
How can I call ...
Pomfrey asked 31/8, 2015 at 18:20
1
Solved
How to add section headers and index list to UITableView in this use case?
@IBOutlet var tableView: UITableView!
var detail: Detail? = nil
var list = [tabledata]()
let search = UISearchController...
8
Solved
So i am trying to get the value of the textLabel of the row I select. I tried printing it, but it didn't work. After some research I found out that this code worked, but only in Objective-C;
- (v...
Langham asked 2/10, 2014 at 10:17
2
Solved
I've got problem with TableView in JavaFX.
Creating tables from existing class with all fields defined is easy.
But I'm wondering if it is possible to make table and add data from List?
I've mad...
4
Have an app going with multiple sections, a few rows per section when "expanded", none when "collapsed". Each section has a section header, was reusing them using a subclass of UITableViewHeaderFoo...
3
My viewcontroller has a tableview, in which i populate my views in different sections. I am trying to add a refresh control to this tableview. What I have implemented is as below.
func setUpRefres...
Ocotillo asked 9/4, 2018 at 4:39
2
I have an imageview inside a UITableViewCell.
Imageview with Aspect Fit creates a lot of extra space in the top and bottom if the image is large. The extra space (gray background color) is shown ...
Swastika asked 20/7, 2016 at 9:49
1
I am implementing a custom editable text cell to get the TAB feature in tableview. All is working fine but when i delete a row, the editable cells below the deleted row all change the values at the...
Rousseau asked 18/5, 2018 at 0:31
16
Solved
Im trying port my app to iOS7, but my custom TableViewController is showing the last row (cell) under the TabBar :(
Im searching a lot for it, but i dont find any solution. Can anyone help me?
My...
Hooge asked 4/10, 2013 at 5:5
1
Solved
Developing an iOS application with Xcode ver 9.3, Swift.
Could you tell me how to animate the height changing of a header in section of a tableview?
A search bar is put in header in section.
The...
2
Solved
I've set a Tap Gesture Recognizer in my ViewController via the Storyboard
(so all the tap in the view, will hide the keyboard if this one is showed)
The thing is that now, I have add a TableView i...
Torch asked 22/1, 2016 at 10:40
7
Solved
I am trying to store an array to NSUserDefaults and retrieve the array when needed to populate a UITableView.
Currently I am using:
//store data
NSUserDefaults.standardUserDefaults().setObject(m...
Trygve asked 8/5, 2015 at 7:58
© 2022 - 2024 — McMap. All rights reserved.