I'm having trouble wrapping my head around delegates and protocols. Here is me trying to use them - see if you can figure out what I'm doing wrong. In the following example, My first class (RBViewContoller) has a UILabel that I want set from my other view controller (RBCalcVC). I'm assuming I need to have RBViewController make a protocol so it have my RBCalcVC set itself as the datasource. The RBCalcVC implements the datasource (by setting itself to something), then the RBViewController displays the data that it asked from the RBCalcVC. In this case, my labelThatNeedsScore would display the text @"1". However the labelThatNeedsScore displays @"0". What am I doing wrong?
#import <UIKit/UIKit.h>
@class RBViewController;
@protocol getAccumlatorDatasource <NSObject>
-(int)getThisNumber;
@end
@interface RBViewController : UIViewController
@property (weak, nonatomic) id <getAccumlatorDatasource> datasource;
@property (weak, nonatomic) IBOutlet UILabel *labelThatNeedsScore;
@end
-
#import "RBViewController.h"
@interface RBViewController ()
@end
@implementation RBViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
int myInt = [self.datasource getThisNumber];
_labelThatNeedsScore.text = [[NSString alloc] initWithFormat:@"%i", myInt];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)buttonToNextView:(id)sender {
}
@end
-
@interface RBCalcVC : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *labelScoreFromCalc;
- (IBAction)submitScore:(id)sender;
@end
blah...
#import "RBCalcVC.h"
@interface RBCalcVC () <getAccumlatorDatasource>
@property (weak, nonatomic) IBOutlet RBViewController *myRBViewControllerInstance;
@end
@implementation RBCalcVC
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
self.myRBViewControllerInstance.datasource = self;
self.labelScoreFromCalc.text = @"1";
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)submitScore:(id)sender
{
[self getThisNumber];
}
- (int) getThisNumber
{
int useThisNumber = self.labelScoreFromCalc.text.intValue;
return useThisNumber;
}
@end