Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

iPhone Device 3.1 SDK Breaks vertical alignment of UITableViewCellStyleValue1 textLabel

Can anyone provide an explanation for the following phenomenon? As of the iPhone Device 3.1 SDK, I've found that if a UITableViewCell is of style UITableViewCellStyleValue1 and its ...
3
votes
1answer
1k views

Width of detailTextLabel on cell with UITableViewCellStyleValue2 style

I'm new to stack overflow and to cocoa-touch developing. I'm trying to build a UITableViewCell using the UITableViewCellSytleValue2 with a multi-line detailTextLabel. Therefore I implemented the ...
3
votes
4answers
5k views

Multi-line UITableViewCell using UITableViewCellStyleValue2 style

I'm trying to figure out how to replicate the UITableViewCellStyleValue2 style so that the detail text can be multiple lines - as seen in the 'address' cells in the Contacts app. Like the Contacts ...
3
votes
2answers
7k views

cell selection style in iphone

By default there is three selection style in iphone - table view. gray - blue - none. I don't need gray or blue. I want to set my custom. For example In normal situation a cell should have ...
2
votes
1answer
109 views

Possible UITableViewCell UILabel Compositing Anomaly

Consider a UITableViewCell with a style of UITableViewCellStyleDefault, set in tableView:cellForRowAtIndexPath:, and a gradient background, set in tableView:willDisplayCell:forRowAtIndexPath:. When ...
2
votes
1answer
240 views

ObjC - Hiding the separator lines of a UITableView on iPhone

I try to do this with following line: tableView.separatorStyle = UITableViewCellSeparatorStyleNone; and it works! on the simulator.. strangely when I run the app on the iPhone (3Gs) they show up ...
2
votes
4answers
4k views

Custom Delete button On Editing in UITableView Cell

I have gone through following question. http://stackoverflow.com/questions/1607155/how-to-change-iphone-uitableview-delete-button-title-while-editing-it -(NSString *)tableView:(UITableView ...
1
vote
2answers
402 views

How to avoid truncation of text with UITableViewCellStyleValue2

I use this code to make my UITableViewCells cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier] autorelease]; If you're unfamiliar with ...
1
vote
3answers
474 views

Three columned UITableViewCell

How can I make a UITableViewCell with three columns in this format: |Text=======xxx===yy%| where "|" represents the end of the cells and "=" is spacing. "Text" is any text, "xxx" is some integer, ...
1
vote
2answers
650 views

Three20 UITableViewCellStyleValue1

How do I create an item in my datasource using a cell that is UITableViewCellStyleValue1? Do I have to create my own custom cell to do it? I don't see anything in the sample catalog. thank, howie
1
vote
2answers
6k views

UITableViewCell with UITableViewCellStyleValue1, adding new line to detailTextLabel at cell at bottom

on my tableview i have the last cell that is not initially visible as seen in the first image, when i scroll the list up, you can see in the second image that the price or my detailTextLabel is put on ...
1
vote
2answers
1k views

NSString is cut off prematurely in a UITableViewCell in 3.0, but looks fine in 3.1

I am using UITableViewCellStyleValue2 and UITableViewStyleGrouped. Let's start with some code (it's not 100% complete, but I have tried to include the code needed to hopefully decipher what I am ...
1
vote
2answers
460 views

Is hard-coded subview sizing brittle or best practice?

Coming from a web background, where explicit sizing is generally not considered best practice, I am not used to 'hardcoding' positioning values. For example, is it perfectly acceptable to create ...
1
vote
2answers
12k views

iPhone Development - UITableViewCellStyleValue2

Note: I'm using iPhone SDK 3.0 Final Version for Leopard. I need to prepare a table listing similar to the one used by iPhone's Photo Album application. There are two new styles for ...
0
votes
1answer
55 views

UITableView is not displaying Cell Style 2

I'm trying to display an array of dictionaries variable in the table Cell Style 2 which is what the Contacts App uses to display the information of the contact. For some reason the cell style does not ...
0
votes
1answer
206 views

custom UITableViewCellStyle

I want to make custom uitableviewcellstyle to make comments in my app. I want uitableviewcell with comment text, number of likes, author's name, date etc... Have you any ideas? I've created method, ...
0
votes
2answers
180 views

How to set different UITableViewCellStyle for different sets of cells in the same table?

Hi I am implementing a UITableView. I intend to use a different UITableViewCellStyle for different sets of cells depending on a certain criteria (see code snippet below) if (cell == nil) { cell = ...
0
votes
1answer
131 views

iphone: custom UITableViewCell taller than the default cell view

I'm creating an application that consists of a ListView with 5 rows: - 1st one containing a graph - 2nd to 5th rows containing some data with the same formatting. I have created 2 classes: ...
0
votes
1answer
674 views

vertical text alignment for UITableViewCellStyleValue2

i want align uitextalignment top in my uitableviewcell for style = UITableViewCellStyleValue2.. Can any one tell how ?
0
votes
2answers
580 views

UITableViewCellStyleValue2 edit indicators?

I am using this style of table view UITableViewCellStyleValue2. I set editing, but I cant seem to get the arrows to show up on the right of the cell - like the Contacts app. Also in the contacts app ...
0
votes
3answers
302 views

Why don't tablecells get released?

I simplified my code to test with, and still on the phone my memory usage keeps climbing to a point where the table slows way down. Can someone tell me what I'm doing wrong here? - ...