I apologize if this post is long. I have two issues i'm trying to work out.
Short:
1) accessing the user defaults from one view which live on a separate view.
2) having the user settings view open upon first launch, then once updated and saved with NSUserDefaults....open the normal first view next time app is opened. (note: not using a settings bundle)
Below is my code. I have created a preferences view which acts as a settings view. It works fine. I have another main page view which has my app and a button on it that sends data to a web service, It works fine as well.
Now, I want to send both at once to the web service with the button on the main page view. Any ideas on how this is done? Please see the code below.
code for preferences viewController.m
-(IBAction) updatePrefsid)sender {
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
[prefs setObject:name.text forKey"greeting"];
[name resignFirstResponder];
greeting.text = @"Application Settings Saved!";
}
- (void)viewDidLoad {
[super viewDidLoad];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *greetName = [prefs stringForKey"greeting"];
if(greetName == nil) {
greeting.text = @"guest registration";
} else {
name.text = [[NSString alloc] initWithFormat"%@",greetName];
}
This Works........How do I pull up what was inputted and saved here....In my other View, and include it in the button action to send to web service.
Here is sample code from second ViewController.m which sends to webservice.
- (IBAction)buttonPressedid)sender
{
NSString *myRequestString = [[NSString alloc] initWithFormat"&lastname=%@", lastName.text];
NSData *myRequestData = [ NSData dataWithBytes: [ myRequestString UTF8String ] length: [ myRequestString length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [ NSURL URLWithString: @"http://websitename.com/phpwebservicename/name.php" ] ];
[ request setHTTPMethod: @"POST" ];
[ request setHTTPBody: myRequestData ];
NSData *returnData = [ NSURLConnection sendSynchronousRequest: request returningResponse: nil error: nil ];}
secondly, How does one make tell the app if viewpreferences are at default....then open that page first, if not, open a different view.
Any expertise on these two subjects will be greatly appreciated.....Thanks a million.
Short:
1) accessing the user defaults from one view which live on a separate view.
2) having the user settings view open upon first launch, then once updated and saved with NSUserDefaults....open the normal first view next time app is opened. (note: not using a settings bundle)
Below is my code. I have created a preferences view which acts as a settings view. It works fine. I have another main page view which has my app and a button on it that sends data to a web service, It works fine as well.
Now, I want to send both at once to the web service with the button on the main page view. Any ideas on how this is done? Please see the code below.
code for preferences viewController.m
-(IBAction) updatePrefsid)sender {
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
[prefs setObject:name.text forKey"greeting"];
[name resignFirstResponder];
greeting.text = @"Application Settings Saved!";
}
- (void)viewDidLoad {
[super viewDidLoad];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *greetName = [prefs stringForKey"greeting"];
if(greetName == nil) {
greeting.text = @"guest registration";
} else {
name.text = [[NSString alloc] initWithFormat"%@",greetName];
}
This Works........How do I pull up what was inputted and saved here....In my other View, and include it in the button action to send to web service.
Here is sample code from second ViewController.m which sends to webservice.
- (IBAction)buttonPressedid)sender
{
NSString *myRequestString = [[NSString alloc] initWithFormat"&lastname=%@", lastName.text];
NSData *myRequestData = [ NSData dataWithBytes: [ myRequestString UTF8String ] length: [ myRequestString length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [ NSURL URLWithString: @"http://websitename.com/phpwebservicename/name.php" ] ];
[ request setHTTPMethod: @"POST" ];
[ request setHTTPBody: myRequestData ];
NSData *returnData = [ NSURLConnection sendSynchronousRequest: request returningResponse: nil error: nil ];}
secondly, How does one make tell the app if viewpreferences are at default....then open that page first, if not, open a different view.
Any expertise on these two subjects will be greatly appreciated.....Thanks a million.