Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Where does scrollCanvas come from? Where is it created? – Cezar Aug 7 '12 at 3:09
scrollCanvas is created in storyboard, and its content size is set in viewDidLoad of composeViewController. – user1467778 Aug 7 '12 at 3:14
How do you instantiate myComposeViewController? – user523234 Aug 7 '12 at 3:14

1 Answer

If I understood this correctly, the problem is that you are adding your newCanvas to the scrollCanvas before the ComposeViewController is loaded, which is when scrollCanvas is set.

My suggestion is for you to create a property in your ComposeViewController to store the newCanvas view. Then you set it's value with you addVisualMeasure method. Something like this:

-(void)addVisualMeasure{
    NSNumber *numberLength = [CoreDataHelper getEditableSong].length;
    int length = [numberLength intValue];
    self.newCanvas = [[UIImageView alloc] initWithImage:[UIImage            imageNamed:@"nashville.png"]];
    [self.newCanvas setFrame:CGRectMake((length - 16) * eighthNoteWidth, 0, 316, 320)];
}

Then, in your viewDidLoad for ComposeViewController you add

[scrollCanvas addSubview:self.newCanvas];
share|improve this answer
Thanks for the response, but this doesn't seem to have changed the behavior. What kind of property should it be? (Nonatomic, strong, weak, etc?) – user1467778 Aug 7 '12 at 16:47
(nonatomic, strong) Can you provide the code yo uuse to instantiate myComposeViewController? – Cezar Aug 7 '12 at 17:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.