Faça uma imagem centralizada e esticada no UIView
UIGraphicsBeginImageContext(self.view.frame.size);[[UIImage imageNamed:@”image.png”] drawInRect:self.view.bounds];UIImage *image = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();self.view.backgroundColor = [UIColor colorWithPatternImage:image];
Continuar lendo