Tous,setAnchorPoint pour UIImage?
Ceci est probablement très basique, mais je ne trouve pas de réponse qui fonctionne pour moi.
Assez simple - Je veux faire pivoter une image autour d'un point final, pas le centre. Je sais que tout ce dont j'ai vraiment besoin est de pouvoir définir le point d'ancrage de l'image et ensuite appliquer la transformation.
Je ne peux pas, cependant, à comprendre comment définir le point d'ancrage de l'image (ou devrait-il être un UIImageView?)
UIImageView * imgv = nil;
UIImage * image;
imgv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"greenbar.png"]];
image = [imgv image];
image.layer.anchorPoint = CGPointMake(0.5, 1.0);***-- Request for member 'layer' in something not a structure or union.***
imgv.image.layer.anchorPoint = CGPointMake(0.5, 1.0); ***-- Request for member 'layer' in something not a structure or union.***
imgv.layer.anchorPoint = CGPointMake(0.5, 1.0); ***-- Accessing unknown 'anchorPoint' component of a property.***
Cela me rend fou, alors s'il vous plaît aider! :)
Merci!
: pb:
Que Dieu vous bénisse! Merci! etc! –