initial - viewport iphone
¿Cómo puedo configurar la imagen directamente en UIView? (6)
Aquí estoy asignando el CGImage a la propiedad de contenido de la capa que acepta CGImage o NSImage. Solo puede asignar CGImage o NSImage a la propiedad de contenido.
layerView.layer.contents = UIImage(named: "Mario.png")?.cgImage
¿Puede alguien decirme cómo puedo configurar la imagen directamente en UIView
? Aquí está mi código:
UIView *view=[[UIView alloc]init];
[view setImage:[UIImage imageNamed:@"image.png"]];
Esto es muy sencillo de hacer. Tratar:
UIView * view = [[UIView alloc] initWithFrame:CGRectMake(origin_x, origin_y, width, height)];
UIImageView * imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"a.png"]];
[view addSubview:imageView];
[imageView release];
También puedes jugar con la propiedad de marco de UIImageView
para moverla en tu UIView
. ¡Espero que ayude!
Versión rápida:
let view = UIView(frame: CGRectMake(0, 0, 640, 200))
view.backgroundColor = UIColor(patternImage: UIImage(named: "myImage")!)
Swift 3:
let view = UIView(frame: CGRect(x: 0, y: 0, width: 640, height: 200))
view.backgroundColor = UIColor(patternImage: UIImage(named: "myImage")!)
puedes probar esto
UIView *aView=[[UIView alloc]init];
UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"anImage.png"]];
aView.backgroundColor = background;
[background release];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
[imageView setImage:[UIImage imageNamed:@"320_480clouds_background.png"]];
self.tableView.backgroundView = imageView;
[imageView release];
Espero que esto te ayude
UIView *view=[[UIView alloc]initWithFrame:CGRectMake(x, y, width, height)];
[view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"a.png"]]];
Espero que esto te ayude.