ios: 画虚线

ios中画虚线

前面已经说过一篇画虚线的文章,这里介绍一种新的方法:
其实ios中提供了一种对图片平铺的操作,所有只要我们提供虚线的一部分,就可以直接使用平铺方法:


  1. 图片(比较小)

这里写图片描述

 UIColor *colorPattern = [UIColor colorWithPatternImage:
                                       [UIImage imageNamed:@"divider_white_horizontal"]];
        [self setBackgroundColor:colorPattern];

2.
我们也可以从写view的- (void)drawRect:(CGRect)rect 方法,
在这里面调用UIImage的画图片方法:

- (void)drawAsPatternInRect:(CGRect)rect; // draws the image as a CGPattern

参考:
http://blog.csdn.net/klyz1314/article/details/8791805
http://blog.csdn.net/ryantang03/article/details/7801028

你可能感兴趣的:(IOS)