在网上搜索了下大概有下面几种方法:
1.使用Quartz2D画出横线
需要一个UIVIew把这两个Label装起来,你需要计算好他们的位置同时给黑线预留像素的位置。这样你在UIView里面- (void)drawRect:(CGRect)rect;用Quartz2D把这条黑线画出来。然后在相应的位置把Label加进去
画线的方法如下: + (void)strokeLine:(const CGFloat*)strokeColor startPoint:(CGPoint)startPoint endPoint:(CGPoint)endPoint width:(CGFloat)width {
CGContextRef context = UIGraphicsGetCurrentContext();
CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); width = width >= ? width : 1.0; CGContextSaveGState(context);
CGContextSetStrokeColorSpace(context, space);
CGContextSetStrokeColor(context, strokeColor);
CGContextSetLineWidth(context, width); CGContextMoveToPoint(context, startPoint.x, startPoint.y);
CGContextAddLineToPoint(context, endPoint.x, endPoint.y); CGContextRestoreGState(context); CGColorSpaceRelease(space);
}
2.添加一个UIView,将背景颜色设成黑色,然后添加进去
UIview *ls=[[UIview alloc]initwithframe:CGRectMake(,,,)];//在100,100的位置添加一条2像素宽,30像素高的线。
ls.backgroundColor=[UIColor redColor];
[cell addsubview:is];
3.直接让美工切一个1px的图片,使用UIImageView添加进去