The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.
4
votes
0answers
235 views
UITextField: can't type text but smilies, copy/paste, and backspace is fine
I think this is strange, I have made my own class that inherits from UIAlertView. In this class I add a UITableView as subview and the cells contains a UILabel and a UITextField.
the class ...
3
votes
0answers
553 views
Row selection when dragging over a UITableView with scrolling disabled
If one were to create a standard grouped table view consisting of two rows and then touch down on the first row, the cell would highlight. If one were to then drag one's finger down, the selection of ...
2
votes
0answers
47 views
change UITableViewCell of a FBFriendPickerViewController
How is it possible to adjust an UITableViewCell of the tableview of a FBFriendPickerViewController with the Facebook SDK v3.2 for iOS?
2
votes
0answers
133 views
UITableViewCells scroll horizontally using auto layout when changing to portrait mode
I am creating a screen that is primarily a UITableView with cells that have differing controls and layouts. I had the tableview working great until I switched to portrait mode where it allowed the ...
2
votes
0answers
221 views
Custom UITableViewCell Content Showing Up Outside of Grouped Style Content View
I am having this issue where my custom table view cell isn't indenting its content when being shown in a grouped style.
static NSString *CellIdentifier = @"GameListCell";
GameViewCell *cell = ...
2
votes
0answers
161 views
Custom UITableViewCell with different row height and a drawRect
I have a subclassed UITableViewCell and in that class I have a drawRect method that draws a frame for each cell. Each cell have a different size (like in Twitter App) and for some reason this is ...
2
votes
0answers
220 views
UITableView can not scroll down. Keyboard is shown and not shown at the same time
I have a UITableView and its UITableViewCells can independently change their sizes via the function tableView:heightForRowAtIndexPath. They store UIImages of varying sizes. When I tap an image the ...
2
votes
0answers
241 views
iPhone didSelectRowAtIndexPath not invoke for cells number 10, 20,30
here is the thing. I have a tableview with a variable number of rows. When you tap one of them, a detail view is shown.
Everything is ok if you tapped rows from 0 to 9, 11 to 19, 21 to 29 etc... But ...
2
votes
0answers
65 views
Push apart TableViewCells while draging over them. (Similar to UITableViewCellReorderControl)
I want to have a similar functionality like we have with the UITableViewCellReorderControl from the UITableViewCell, but as far as I know I cant use the reordercontrol.
I have implemented Drag & ...
2
votes
0answers
179 views
How can I show UIAccessoryView on a cell with UITableViewCellEditingStyleInsert?
I want to use an accessorydisclosureindicator to inform the user to tap on the cell in order to change the time.
I did set the accessoryType to UITableViewCellAccessoryDisclosureIndicator in the ...
2
votes
0answers
415 views
Separator of UITableViewCell does not hidden in iOS5
in TableView Controller, viewWillAppear, it is set as:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
self.tableView.separatorColor = [UIColor clearColor];
Everything works ...
2
votes
0answers
179 views
Resizable UITextViews in my table's cells
I'm using UITextViews in my table's cells. When I'm changing text in my UITextView, cell should be resized. As I know, to do it I need to write:
[(UITableView*)[self view] beginUpdates];
...
2
votes
0answers
142 views
Can't see custom UIImageView tableviewcell from xib
i have some data from core data persistent store and i created a custom tableview cell from xib.
I am able to send parameters to my TableViewCell class where i have some methods for set text to some ...
2
votes
0answers
165 views
UITableView reordering with click anywhere in the cell
Does anyone know of a way to do this?
Two Attempts:
Try to expand the UITableViewCellReorderingControl
Use the gesture / touch event of the cell(?) and try to call it from my own control?
best ...
2
votes
0answers
480 views
How do you autoresize a subview of a UITableViewCell for grouped mode?
I've subclassed UITableViewCell to add an extra label and some color options.
I added the label as a subview of [the cell].contentView. When you set a UITableView to "grouped" mode, it's indented ...
2
votes
0answers
217 views
UITableView losing height when i search
Im getting a little trouble here. I have a UISearchBar that searchs for me some content, that are included on UITableView. Perfect.
When my view loads, i set a 110 height to my table view row. Nice. ...
2
votes
0answers
210 views
How do I reload the editing style of a UITableViewCell without losing focus?
I have a table with custom UITableViewCells which have UITextFields in them; basically, I'm mimicing the editing view of Apple's Contacts app. Once the user starts typing in the text field in the ...
2
votes
0answers
76 views
favorites tab bar help
i've been trying for over 2 weeks to design a favorites tab bar that adds items that are selected by a uibutton to this new tab. the items are table view cells. ive looked over books and code ...
1
vote
0answers
24 views
Multiple custom Checkmarks in tableviewcell reusing issue, how to set second check image on button
I am using 4 buttons with image from array like a gallery in TableView, Now i want to select image and deselect image for moving objects of array to another.
Uitableview selection Working for the ...
1
vote
0answers
95 views
Add Gradient to table cell with dynamic height iOS 6
I am applying gradient to cell with dynamic height. But for some cells , gradient is not applied correctly. Here is my code
#pragma mark - Table view data source
- ...
1
vote
0answers
43 views
UITableViewCells scroll on top after reorder
After I reorder a UITableViewCell and scroll the tableView, the cell goes on top of the header instead of going underneath it. In my tableView, its editing property is always set to YES, and the ...
1
vote
0answers
65 views
Issue with setting an image on a UITableCellView (using AFNetworking) just before reloading a UITableView
In my app I populate a UITableView with entities from CoreData and right after than make a server request to check if there are new entities (which are added to the table view with reloadData).
In ...
1
vote
0answers
86 views
How can I get the indexPath of an UIScrollView?
I have a UITableViewCell with a UIScrollView:
cellScroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 43)];
cellScroll.contentSize = CGSizeMake(960, 43);
cellScroll.contentOffset = ...
1
vote
0answers
13 views
How to access native apps on table view and able to use multiple selections
I am trying to create an app on xcode and I need to use a table view where i can select multiple applications to do a function and i was wondering how to do this, If possible I would like to do this ...
1
vote
0answers
37 views
Return custom UITableViewCell to non-editing state
I've subclassed a UITableViewCell to create custom layout and animations for my table view. Basically, when I swipe left, I enter edit mode and when I swipe right, I exit edit mode -- each with the ...
1
vote
0answers
72 views
Managing Selection on Reused UITableViewCells (Subclassed)
I know it goes against Apple's guidelines, but I would like to use permanent cell selection in my tableview by setting a custom selected state for my subclassed UITableView cells. It fits better to ...
1
vote
0answers
110 views
Swiping to delete cell moving cell's custom UILabels?
I have a UITableViewCell and I have added custom UILabels to the cell. I implemented UITableView's delete methods to allow deleting of the cell when it is swiped. The problem is, when swiped, the cell
...
1
vote
0answers
79 views
Dynamic Text UITableViewCell height Attributed Text
I have the following code:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
SectionController *sectionController = [_sectionAndRowControllers ...
1
vote
0answers
154 views
Use UITableViewCellDeleteConfirmationControl to know what is the current cell's subview
Is it OK to use UITableViewCellDeleteConfirmationControl this way:
- (void)layoutSubviews {
[super layoutSubviews];
[UIView beginAnimations:nil context:NULL];
[UIView ...
1
vote
0answers
118 views
Subclassing UITableViewCell for grouped table
I'm trying to create a a custom subclass of a UITableViewCell to be used in a grouped table.
I'm laying out the subclass with a nib. (I've just tried doing it without the nib but getting the same ...
1
vote
0answers
162 views
Keyboard not showing-up for UITextField in UITableViewCell in iOS 6.x
Working on iPhone/iPad application,
Problem: Keyboard not showing-up for UITextField in UITableViewCell in iOS 6.x, but same code works fine on iOS 5.x
We developed a UIViewController, in which we ...
1
vote
0answers
36 views
How do i connet my UITableviewcell with my PDFreader using a IBAction?
Im working on a iPhone APP for displaying multiple PDF documents.
I have a UItableview displaying names of my pdf-files from a .plist and i have the open source VFR pdf reader ...
1
vote
0answers
113 views
UITapGestureRecognizer in Subview of UITableViewCell
I have two subclassed UITableViewCells. The first (NormalCell) is used as the default reusable cell and the second (DetailCell) is inserted only when a user taps on an existing cell. The DetailCell ...
1
vote
0answers
100 views
Get height for UITableViewCell with uitextview
I found a lot of similar questions, but there was no answer for me.
I'm trying to do the same cell, like note cell in iOS contacts application. There is label on left and uitextview on the right. ...
1
vote
0answers
223 views
resignFirstResponder of a UITextField in a custom UITableViewCell
I create the table cell like this (it's the first cell of the first section and the only cell with a textField in it):
if (indexPath.section == 0 && indexPath.row == 0) {
...
1
vote
0answers
86 views
Master-Detail - Different cells to different UiTablevIewControllers
Im having a problem connecting the different tableViewCells to different UiTableViewControllers. The first cellrow gets connected to the right TableViewController but after that cant get any further ...
1
vote
0answers
289 views
iOS: TableView with multiple Images per Row (SDWebImage)
I am a bit desperated about my sectioned tableview. I use a custom UITableViewCell with 4 images like the one below:
I try to load the images via SDWebImage for each cell.
The loading procedures ...
1
vote
0answers
101 views
How to use a popover segue from a tableview prototype cell
I'm trying to use a popover segue from a table view prototype cell.
It works fine if I use a modal segue but for some reason when I use a popover I get the following error:
Couldn't compile ...
1
vote
0answers
454 views
Dynamic prototype cells in uitableviewcontroller using storyboards
I've been scratching my head over that problem for two days now and I really can't find why such behavior is happening... This is really starting to make me sick!
I have an iOS app which uses ...
1
vote
0answers
106 views
How do you remove the UITableView Edit cell drop shadow?
I have an image of what is happening:
How do I get rid of that drop-shadow?
1
vote
0answers
130 views
Delete button over UITableViewCell when dismissing delete action
I am getting a strange behaviour when dismissing delete action when the UITableView is in edit mode.
If I swipe to delete the cell, the delete button hides immediately. This is how I wanted to behave ...
1
vote
0answers
226 views
how to show data to only visible tableview cells in ios
Hi guys i have a custom tableview cell with a scrollview in it.the problem is all the data is getting loaded in tableview cells at once.what i want is to load the data only for the visible cells in ...
1
vote
0answers
62 views
Why does a manually reused UITableViewCell disappear on row-reload?
If I keep a fixed UITableViewCell with reuseidentifier=nil as an ivar and return this instance for a specific row, and then reload this row specifically using [tableView ...
1
vote
0answers
88 views
Cell are created but not shown in UITableView
that's my first question here.
My UITableView doesn't show all cells that are created. What's the problem?
After App is launched it downloads data from server and shows it using UITableView. When ...
1
vote
0answers
283 views
iPhone 5 (or just retina) resizableImageWithCapInsets not working as expected
I'm out of ideas. I'm trying to use resizableImageWithCapInsets to set the background image on my table cells. My expected cap insets work fine on iPhone Simulator, iPhone 3GS device, but NOT on my ...
1
vote
0answers
114 views
How do I add a method to a UIButton in a prototype cell?
Hi am creating a table with two prototype cells. The button "Cell One" is connected to the method btnCellOneTouched and button "Cell Two" is connected to btnCellTwoTouched. The button in each ...
1
vote
0answers
70 views
dynamically get the height for the cell depend on UIImageView
I have some pictures.My tableview will load them and change the height of row depend on picture's height.My picture's size is different.
- (void)viewDidLoad
{
NSString *imageName=[kDataArray ...
1
vote
0answers
99 views
UITableview not responding to events
I am building a "Utility Application" using Xcode and above is a screenshot of the view that can be seen on flipping over from the main view controller. The UITableView inside this view has the ...
1
vote
0answers
132 views
error:NsIvalidArgumentException [_NSCFConstantString ObjectAtIndex:]:
I'm using table view in view controller.tableviewcell shows the same data only in the row.I'm having action button in the view controller. If I pressed a button the output shown in the tableviewcell ...
1
vote
0answers
31 views
table view, need to add a button to the top of the controller, when you click on the Add button. .
hi guys have a table view, you need to add a button to the top of the controller, when you click on the Add button to turn the tables on a separate controller in the cat can write, this information ...




