uitableviewcell

tableView editing mode -iPhone

Hi All, Is there any way to remove the minus sign when in editing mode and displaying only the reorder icon? Trying since long time. Somehow succeeded in removing the indentation of table but still failed to remove the minus sign. Also i want the reorder icon appear permanently on screen so the table view will always be in editing mo...

iPhone SDK Simple Question

Is it possible to add a UIActivityIndicatorView to the left side of a UITableViewCell? We're already using the right side of a UITableViewCell for a disclosure indicator. Thanks. ...

UITextField not responding to onscreen keyboard presses?

Hey guys, I've got a really weird problem whereby I when I click on a UITextField the onscreen keyboard pops up, and I can delete characters in the text field - but I cannot type into it! Background info: I'm placing the UITextField into a UITableViewCell, which in turn is being got from a table that is being placed into a UIAlertVie...

Building UITableViewCells in Interface Builder

I am wonder if it is better to build my cells in Interface Builder, or programmatically? The reason I am leaning toward IB is that my cells are going to have a bit of customization, and it would be much easier this way. Are their drawbacks to the IB approach? Also, are there any good tutorials about how to use a cell in IB? ...

UIButton as part of UITableViewCell subview - make it work...

Hi all, I'm having some class which is a subclass of UITableViewController. on one of the TableView's cell I'm adding a view that holds a UIButton as subview (i.e. [someParentView addsubview:button]) I'm adding the view to cell like this: [cell.contentView addSubview:someParentView] I've set the UserInteractionEnabled both for the butt...

Apple's UIKit experience versus .net experience

I am new to iPhone programming. Coming from a .net background, I find Apple's UIKit really difficult to use. For example, creating a simple static table view requires me to implement a lot of datasource and delegate methods. In .net, you just add the items and set their properties in Visual Studio, that's it! As my application is getting...

UITableView with custom UITableViewCells mixing content when scrolling

Hi, I have an heterogeneous tableView with an entire section made up of UITableViewCells with a UITextField control on each one's contetView. The problem is that I see text written in textfields being mixed when I scroll. I've seen many times before this problem and though it's deprecated I solved by assigning a different cellIdentifi...

Black corners around UITableViewCells

I am trying to display a UITableView in front of an image, and here's the steps I'm following: Inside the view, add a UIImageView with the image set to the appropriate file in the project Add a UITableView inside the parent view (the same parent as the image view) Set the backgroundColor for the table view to clear Wire up a datasou...

subclassed UITableViewCell - backgroundView covers up anything I do in drawRect

I'm trying to make a subclassed UITableViewCell where I draw an image in the upper right corner. I have it working perfectly - except when I set self.backgroundView, my background image covers up the image drawn in drawRect. There must be a way to be able to set a background image (and the selectedBackgroundView) without covering up wha...

Misalignment in a UITableView using UITableViewCellStyleSubtitle

I have a table with many cells, all using UITableViewCellStyleSubtitle to allow me to have an icon at left with large text to the right above a small subtitle. Pretty straightforward, but my icons vary significantly in width, and as it was the text and subtitle appeared raggedy from one row to the next (farther to the left with narrow i...

UITableViewCell UITableViewCellStyleValue1 textLabel too long , make detailLabel invisiable!

UITableViewCell UITableViewCellStyleValue1 textLabel too long , make detailLabel invisiable! any one have idea? ...

Is the UITableViewCell subclass used in Apple's native Mail app available anywhere online?

Is the UITableViewCell subclass used in Apple's native Mail app available anywhere online? Thanks. ...

How can I increase the height of UITableViewCell dynamiclly

Hi, I have an UITableView which includes a list of UITableViewCells. And I set the heights of UITableViewCells in method (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath. However, I need to increase the height of UITableViewCell when it is selected. For example, the height of UITableViewCell ...

UITableView is redrawing only some of custom cells

Hi guys, For quite a bit of time I am struggled with a kinda stupid problem. Hope someone can give me a hand. UITableView is being implemented. The UITableViewCell is drawn in .xib and connected to a textEditCell property. in the main program there is a simple code: - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowA...

iPhone: "Locking" a Cell to the Top of TableView

I am trying to have a cell at the top of the table always remain there and not scroll down when an object is added i.e. the cell should stay at indexpath.row==0. Is it possible to lock a cell to a certain position in a table? If so, how would this be implemented? EDIT If i made a different section for this cell that would work wouldnt ...

Iphone uitabelviewcell layer shadow

Hi I'm trying to add a shadow to a uitabelviewcell using the layer.shadowColor, Offset, Radius but it doesn't seem to affect it in anyway. The table is grouped style. Any ideas why? Here is the code i'm using: cell.layer.shadowColor= [UIColor blackColor].CGColor; cell.layer.shadowRadius = 5.0; cell.layer.shadowOffset = CGSizeMake(10, ...

UITableViewCell custom reorder control

Is there any way to change the image of the reorder control that is displayed when the UITableView is in edit mode? I have a UIImage that I’d like to display instead of the usual grey bars. Do I have to subclass UITableViewCell to accomplish this? ...

How to load UITableViewCell height from a nib file?

I'm reading through TableView_iPhone tutorial from Apple http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html and I'm trying to use 'The Technique for Static Row Content' technique to populate TableView with cells from a nib file. In the tutorial the nib fil...

How can a create a automatically resizing table cell for entering texts like in the iPhone's "mail" app?

I'm try to emulated something just like the "new message" page in Apple's mail app on the iphone. I've implemented it with a tableview and I've successfully gotten the "To", "CC", and "Subject" rows to behave correctly, but I'm not sure how to implement the actual message portion of the page. There are several issues that I'm having. I'...

Custom UITableViewCell fast scrolling

I have an UITableView showing custom view cells that I've designed in interface builder. It has quite many buttons and labels and a gradient background, which makes the scrolling performance sloppy, it "lags" every time a new cell loads. I've read the guide from the guy who created Tweetie about fast scrolling, and it says it's best to d...