iphone开发--大区域中平铺(非拉伸)图片
创建一个UIView的子类,在- (void)drawRect:(CGRect)rect中写入
self = [super initWithFrame:frame]; if (self) { [self drawRect:frame]; } return self;
?