iOS UIView 添加背景图片
UIView 添加背景图片:第一种方法(不推荐): 用的UIView的设置背景颜色方法,用图片做图案颜色,然后传给背景颜色。[self.view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@”“]]];这种方法是最简单的,但是,存在的问题也比较:首先,[UIImage ima...