-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Description
Hello, first congratulations for the project. Sorry for my English.
This code working:
UIImageViewAligned *imageAlign = [[UIImageViewAligned alloc] initWithFrame:CGRectMake(0, 0, 280, 280)];
[imageAlign setImage:[UIImage imageNamed:@"exampleImage.png"]];
imageAlign.contentMode = UIViewContentModeScaleAspectFit;
imageAlign.alignBottom = YES;
imageAlign.alignLeft = NO;
imageAlign.alignRight = NO;
imageAlign.alignTop = NO;
[self.viewContent addSubview:imageAlign];
[imageAlign setBackgroundColor:[UIColor greenColor]];
But when I use an image in memory that comes from another UIViewController is not working:
imageAlign.image = self.currentImage;
Thank you very much.
Metadata
Metadata
Assignees
Labels
No labels