I've been trying to get my head around this for ages, which frustrates me all the more because the program is doing what I want it to. However, I sense I don't fully understand it and therefore feel there is a more efficient way of doing. In essence simply passing data from view to the next. I have a navigation controller in front of two view controllers that need to share information.
ViewController.h
#import <UIKit/UIKit.h>
@class ChooseServerViewController;
@class TestTypeViewController;
@protocol serverUserChoice <NSObject>
- (void)userDidChoose:(NSString *) server;
@optional
- (NSString *) serverPick;
@end
@interface ViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, serverUserChoice>
@property (nonatomic, retain) NSString * serverPick;
@property (nonatomic, retain) NSString *testLocation;
@property (nonatomic, weak) IBOutlet UITableView *tableView;
@property (nonatomic, assign) id <serverUserChoice> serverDelegate;
@end
**Protocol method set here.
ViewController.m**
#import "ViewController.h"
#import "ChooseServerViewController.h"
#import "AppDelegate.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize testLocation;
@synthesize serverDelegate;
@synthesize serverPick;
- (void)viewDidLoad
{
NSUserDefaults *sharedPref = [NSUserDefaults standardUserDefaults];
testLocation =[sharedPref stringForKey:@"defaultLocation"];
NSLog(@"Location Chosen: %@",testLocation);
[serverDelegate userDidChoose:testLocation];
[self serverPick]; // calls the serverPick method (below)
[super viewDidLoad];
}
#pragma mark - Table View Methods
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
ChooseServerViewController *viewController = (ChooseServerViewController *)segue.destinationViewController; viewController.serverDelegate = self;
}
-(void) viewWillAppear:(BOOL)animated { // viewWillAppear everytime this view is navigated to
[super viewWillAppear:animated];
[self.tableView reloadData]; // reloads all the table data
}
- (void) userDidChoose:(NSString *) server {
[serverDelegate userDidChoose:server];
testLocation = server;
NSLog(@"Test Location %@", server);
}
- (NSString *) serverPick {
NSLog(@"serverPick set as: %@",testLocation);
return testLocation; // returns the value of testLocation to the serverPick string
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; // Default is 1 if not implemented
{
return 2;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; // fixed font style. use custom view (UILabel) if you want something different
{
switch (section) {
case 0:
return @"Choose Test Location:";
break;
case 1:
return @"Choose Test Type:";
default:
return @"Unknown";
break;
}
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
{
switch (section) {
case 0:
return 1;
break;
case 1:
return 1;
default:
return 0;
break;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
UITableViewCell *serverLocCell = [tableView dequeueReusableCellWithIdentifier:@"serverLocation"];
switch (indexPath.section) {
case 0:
serverLocCell.textLabel.text = testLocation;
serverLocCell.detailTextLabel.text = @"Change";
break;
case 1:
serverLocCell.textLabel.text = @"Speed Test";
serverLocCell.detailTextLabel.text = @"Change";
break;
default:
break;
}
return serverLocCell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
switch (indexPath.section) {
case 0:
[self performSegueWithIdentifier:@"toServerChoice" sender:self];
break;
case 1:
[self performSegueWithIdentifier:@"toTestType" sender:self];
break;
default:
break;
}
}
@end
ChooseServerViewController.h
#import <UIKit/UIKit.h>
#import "ViewController.h"
@interface ChooseServerViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, serverUserChoice>
@property (nonatomic, retain) NSString * serverPick;
@property (nonatomic, retain) NSArray *serverSelection;
@property (nonatomic, retain) NSArray *qServerSelection;
@property (nonatomic, retain) NSString *cellValue;
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (nonatomic, retain) NSIndexPath* lastIndexPath;
@property (nonatomic, assign) id <serverUserChoice> serverDelegate;
@property (nonatomic, retain) ViewController *mainViewController;
@end
ChooseServerViewController.m
#import "ChooseServerViewController.h"
#define totalSections 2
#define standardSection 0
#define qualitySection 1
@interface ChooseServerViewController ()
@end
@implementation ChooseServerViewController;
@synthesize serverSelection;
@synthesize qServerSelection;
@synthesize lastIndexPath;
@synthesize cellValue;
@synthesize serverDelegate;
@synthesize serverPick;
- (void)viewDidLoad
{
serverSelection = [[NSArray alloc] initWithObjects:@"Chicago, IL",@"London, UK",@"San Jose, CA",@"Washington, DC", nil];
qServerSelection = [[NSArray alloc] initWithObjects:@"Chicago, IL (Q)",@"London, UK (Q)",@"San Jose, CA (Q)",@"Washington, DC (Q)", nil];
cellValue = [serverDelegate serverPick]; // assigns the value of serverPick to the cellValue string
NSLog(@"Server location from previous view is %@",cellValue);
[super viewDidLoad];
}
#pragma mark - Table View Methods
- (void)userDidChoose:(NSString *) server {
[serverDelegate userDidChoose:server]; //passes the value of server to the delegate method (value of cellValue)
cellValue = server;
NSLog(@"Selection made and strings passed to the value of 'server' is: %@",cellValue);
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; // Default is 1 if not implemented
{
return totalSections;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; // fixed font style. use custom view (UILabel) if you want something different
{
switch (section) {
case standardSection:
return @"Standard Test Locations:";
break;
case qualitySection:
return @"Quality Test Locations:";
break;
default:
return @"Section Count Error";
break;
}
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
{
if (section == 0) {
return [serverSelection count];
}
else {
return [qServerSelection count];
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
UITableViewCell *serverLoc = [tableView dequeueReusableCellWithIdentifier:@"serverSelection"];
if([self.lastIndexPath isEqual:indexPath])
{
serverLoc.accessoryType = UITableViewCellAccessoryCheckmark;
}
else
{
serverLoc.accessoryType = UITableViewCellAccessoryNone;
}
switch (indexPath.section) {
case standardSection:
serverLoc.textLabel.text = [self.serverSelection objectAtIndex:indexPath.row];
if ([[self.serverSelection objectAtIndex:indexPath.row] isEqualToString:cellValue]) {
serverLoc.accessoryType = UITableViewCellAccessoryCheckmark;
self.lastIndexPath = indexPath;
}
break;
case qualitySection:
serverLoc.textLabel.text = [self.qServerSelection objectAtIndex:indexPath.row];
if ([[self.qServerSelection objectAtIndex:indexPath.row] isEqualToString:cellValue]) {
serverLoc.accessoryType = UITableViewCellAccessoryCheckmark;
self.lastIndexPath = indexPath;
}
break;
default:
break;
}
return serverLoc;
}
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(self.lastIndexPath)
{
UITableViewCell* uncheckCell = [tableView
cellForRowAtIndexPath:self.lastIndexPath];
uncheckCell.accessoryType = UITableViewCellAccessoryNone;
}
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark; // sets the chosen cell as checkmark
self.lastIndexPath = indexPath; // sets the chosen cells indexpath to lastindexpath
cellValue = cell.textLabel.text;
NSLog(@"Server location selected is: %@",cellValue);
[cell setSelected:FALSE animated:TRUE];
[serverDelegate userDidChoose:cellValue]; // passes the value of cellValue to the userDidChoose method
}
@end
All the user is doing is choosing a new server location from a table view.
In ViewController the location is got from the default settings of the app. It then send the value for the default location to the delegate method "userDidChoose". However, I also set the delegate string "serverPick" to the same value.
When the user moves to the ChooseServerViewController the value of serverPick is given to the string cellValue. Using this the current location is given a checkmark to show it's the current server of choice.
I tried getting rid of serverPick and trying to access the value of "server" (userDidChoose method) to use in ChooseServerViewController, no luck. I tried getting rid of userDidChoose and just having the string "serverPick" but that failed also.
Any help would be great, thanks.