Perguntas com a marcação «objective-c»

100
Alterando a cor da imagem UII

Estou tentando mudar a cor do UIImage. Meu código: -(UIImage *)coloredImage:(UIImage *)firstImage withColor:(UIColor *)color { UIGraphicsBeginImageContext(firstImage.size); CGContextRef context = UIGraphicsGetCurrentContext(); [color setFill]; CGContextTranslateCTM(context, 0,...

100
Como obter UITableView de UITableViewCell?

Tenho um UITableViewCellque está vinculado a um objeto e preciso saber se a célula está visível. A partir da pesquisa que fiz, isso significa que preciso acessar de alguma forma o UITableViewque o contém (a partir daí, existem várias maneiras de verificar se ele está visível). Então, eu gostaria de...