当前位置: 代码迷 >> Iphone >> iphone开发-大区域中平铺(非拉伸)图片
  详细解决方案

iphone开发-大区域中平铺(非拉伸)图片

热度:654   发布时间:2016-04-25 06:16:22.0
iphone开发--大区域中平铺(非拉伸)图片

创建一个UIView的子类,在- (void)drawRect:(CGRect)rect中写入

    [self setBackgroundColor:[UIColor clearColor]];    UIImage *img = [UIImage imageNamed:@"game_top.png"];    [img drawAsPatternInRect:rect];
并在- (id)initWithFrame:(CGRect)frame中写入
    self = [super initWithFrame:frame];    if (self) {        [self drawRect:frame];    }    return self;
在调用的地方直接调用- (id)initWithFrame:(CGRect)frame即可。

?

  相关解决方案