The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.
0
votes
0answers
3 views
UIButton in TableViewCell VoiceOver Accessibility
The Situation:
I'm implementing VoiceOver accessibility for an app.
I have a custom UITableViewCell (code below) that can toggle between an expanded and a normal visual (selected vs unselected) by ...
0
votes
2answers
10 views
UITableViewCell selectedBackgroundView does not work
My UITableViewCells are all pre-defined "Subtitle" style. I want to set the background image for a selected cell to another picture. I tried every which way to implement this and all methods discussed ...
0
votes
2answers
34 views
Increasing size of Custom UITableViewCell that contains 2 UILabel
I'm working on a UITableView. In my app I'm to show some data in 2 sections and I have a custom cell, actually in customCell I have 2 UILabel label1 & label2.
First section is ok because it has ...
0
votes
5answers
45 views
Get the indexpath from a UIBarButtonItem in a UITableViewCell
I have a UITableViewController like this. A grouped table view with a UIBarButtonItem in the accessoryView of each row.
- (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
3answers
43 views
View last cell when i add array of cell in tableview
I need to show last cell record in tableview cell. Each time i will add new array in table view. After i will reload the tableview cell. Now its showing the record from first cell. Any one please ...
0
votes
1answer
24 views
Losing UIButton within a custom cell when reloading table
I've custom UITableViewCells where I placed buttons dynamically in code. I have programmatically set actions for such buttons, and when the action is triggered, then I need to reload the table, among ...
-1
votes
6answers
62 views
How to push New View Controller From any dynamic button click which is in CustomTableViewCell?
I have one tableview in my viewcontroller and in that i have customTableViewCell.i have dynamic buttons which generated runtime in my customeview cell.and on that button's click i want to push my view ...
0
votes
0answers
24 views
Custom UITableViewCell vertical align UILabel wrong when using a custom font
I`m creating a custom UITableViewCell that holds a UILabel inside with a custom font (Helvetica Medium), but with this font the text appear strange, look the picture.
But when I user a System Font ...
2
votes
1answer
36 views
UIImageViews inside UITableViewCell don't become selected
I am creating the table with the custom UITableViewCells represented on this image:
In the left part of the cell there are a gray UIImageView, three labels and an UIImageView with a line. Cells ...
-6
votes
1answer
41 views
UIImageView inside UITableViewCell
I want to put some images inside a UITableViewCell , so I prefer to custom the UITableViewCell with UIImageView. But the number of images in each cell is not the same, how can I make the cell's layout ...
1
vote
3answers
52 views
To get view object from UITableviewCell
I have added a textfield in oe of the cell in my tableview.
Now I want to compare if the touched object is textfield or not. For that I am using -
-(void)touchesBegan:(NSSet *)touches ...
0
votes
5answers
76 views
UITableView data displays multiple times when scrolling
I have a UITableView where the data displays but when it scrolls the data (UILabel) either disappear or they are added over and over again on top of each other.and every time if i scroll every cell ...
0
votes
1answer
16 views
Static Table View cell seque to ViewController clicking in Cell
When I create a table view with static cells, and connect cell with other ViewController in storyboard and run this, It is seque when clicked in disclosure indicator, but when click in cell it`s ...
0
votes
2answers
23 views
Table View Multiple Segues
Hi There im creating an app using table views in storyboards and so far i am able to populate the table i have it set to making 4 cells and push to the same view controller from each cell but what i ...
0
votes
3answers
51 views
Displaying multiple objects with same keys in Table View
I currently have a dictionary property `scoreDictionary constructed so that it contains values that are themselves a nested dictionary:
{
Bob = {
"2013-08-02 00:27:02 +0000" = 70;
...