vote up 0 vote down star
2

Can someone help me create an index/count button for a UITableView, like this one?

iTunes

Is there an Apple example, or other tutorial? Thanks, Jordan

flag

2 Answers

vote up 3 vote down check

Wow... aaa... ok... I've got an easier way:

#import <QuartzCore/QuartzCore.h>


.....

UILabel *label = [[UILabel alloc] initWithFrame: 
        CGRectMake(cell.contentView.frame.size.width - 50, 0, 35, 35)];
label.layer.cornerRadius = 5;
label.backgroundColor = [UIColor blueColor]; //feel free to be creative
label.clipToBounds = YES;
label.text = @"7"; //Your text here

[cell.contentView addSubview: label];
[label release];

Basically, you're making a UILabel with rounded corners using the QuartzCore framework - don't forget to include it. Extra note: it only works on OS > 3.0.

link|flag
Luvieere, Your way rocks! – Jordan Nov 7 at 22:44
vote up 1 vote down

You need to create a custom view, and then draw the oval and number in manually. Finally, assign that custom view as the accessory view of the cell. Here's the drawing code, using Core Graphics. It's not too tricky:

    CGRect			bounds = self.bounds;
    CGContextRef	context = UIGraphicsGetCurrentContext();
    float			radius = bounds.size.height / 2.0;
    NSString		*countString = [NSString stringWithFormat: @"%d", _count];

if (_count < 100) bounds = CGRectMake(5, 0, bounds.size.width - 10, bounds.size.height);

CGContextClearRect(context, bounds);

CGContextSetFillColorWithColor(context, _color.CGColor);
CGContextBeginPath(context);
CGContextAddArc(context, radius + bounds.origin.x, radius, radius, M_PI / 2 , 3 * M_PI / 2, NO);
CGContextAddArc(context, (bounds.size.width + bounds.origin.x) - radius, radius, radius, 3 * M_PI / 2, M_PI / 2, NO);
CGContextClosePath(context);
CGContextFillPath(context);

[[UIColor whiteColor] set];

UIFont					*font = [UIFont boldSystemFontOfSize: 14];
CGSize					numberSize = [countString sizeWithFont: font];

bounds.origin.x += (bounds.size.width - numberSize.width) / 2;

[countString drawInRect: bounds withFont: font];

link|flag
Wow. Awesome. Ben, luvieere's right. His way is easier! ;) – Jordan Nov 7 at 22:43
ah, yes, cornerRadius is cool, but, as he noted, 3.0 only. This is slightly older code. – Ben Gottlieb Nov 8 at 0:35
Ben, I can't think of any reason why anyone (even Jailbreakers) would elect to stay on iPhone OS v2.2.1 or prior versions. Can you? – Jordan Nov 10 at 12:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.