I created a singleton called "GCTurnBasedMatchHelper", which includes the following code in the header:
@property (nonatomic, retain) NSString *pick1;
In the implementation I have these lines:
#import "GCTurnBasedMatchHelper.h"
//Some implementation code in here...
@synthesize pick1;
- (void) pick{
int r = arc4random() % 2;
if (r==0) {
pick1 =[[NSString alloc] initWithFormat:@"Askerer"];
NSLog(@"%@", pick1);
} else {
pick1 =[[NSString alloc] initWithFormat:@"Answerer"];
NSLog(@"%@", pick1);
}
}
How can I access the value of pick1 from another class implementation ViewController.m? And how can I access other properties from ViewController.m in GCTurnBasedMatchHelper.m?
Thanks!