I am trying to call one view controller's method from another view controller. Here is the method that I am trying to call: (this code is located in composeViewController.m)
-(void)addVisualMeasure{
NSNumber *numberLength = [CoreDataHelper getEditableSong].length;
int length = [numberLength intValue];
UIImageView *newCanvas = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"nashville.png"]];
[newCanvas setFrame:CGRectMake((length - 16) * eighthNoteWidth, 0, 316, 320)];
[scrollCanvas addSubview:newCanvas];
NSLog(@"Visual measure added.");
NSLog(@"%f", newCanvas.frame.origin.x);
}
Here are the important parts of the .h and .m files in the other view controller:
.h
@class composeViewController;
@property (nonatomic, retain) composeViewController *myComposeViewController;
.m
- (IBAction)addMeasureButton:(id)sender {
[[CoreDataHelper getEditableSong] addMeasureToLength];
[myComposeViewController addVisualMeasure];
}
Alas, this is not working. The function is definitely getting called. The NSLogs fire in addVisualMeasure. But it doesn't add the UIImageView to the scrollview. If I put the exact same code in another place (like ViewDidLoad), it works.
Any ideas for why this would be happening?
