Mam ViewControllerA i ViewControllerB. Chcę wywołać metodę ViewControllerA z ViewControllerB.Metoda wywołania z innego ViewController
W ViewControllerA jest obecna metoda:
-(NSMutableArray*) loadData;
W ViewControllerB.h:
#import "ViewControllerA.h"
.......
@property (nonatomic, strong) ViewControllerA * viewControllerA;
@property (nonatomic, strong) NSMutableArray * mutableArray;
W ViewControllerB.m:
self.mutableArray =[viewControllerA loadData];
ale metoda nie dzwoni. Czemu? Z góry dziękuję
czy dodano funkcję do nagłówka kontrolki view? –
Czy chcesz, aby metoda w viewControllerA była metodą klasy? –