Why is my method not being called?
My UIViewController should be calling a method in my UIView called myMethod.
It only works on the inital UIView viewDidLoad.
After the view is loaded, I can't call the "myMethod" from someOtherMethod. And I don't understand why? XCode recognizes that the method exists and the method is exposed in my header.
MyViewController.h
#import “MyView.h”
@interface MyViewController : UIViewController {
MyView *mv;
}
MyViewContoller.m
#import “MyView.h”
- (void)viewDidLoad
{
mv = [[MyView alloc] initWithFrame:self.view.frame];
[self.view addSubview:mv];
//THIS WORKS IF CALLED FROM viewDidLoad
[mv myMethod];
}
- (void) someOtherMethod {
//THIS DOESN’T WORK IF CALLED LATER
[mv myMethod];
}
MyView.h
- (void) myMethod;
MyView.m
- (void) myMethod {
NSLog(@"My Method");
}
someOtherMethodis not actually being called. Everything else looks right. Try putting aNSLog(@"someOtherMethod called!");in there too to see if the method is ever being called. – lnafziger Feb 20 at 15:16