Created
January 13, 2011 13:23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "NotesInsertViewController.h" | |
@implementation NotesInsertViewController | |
- (id)init { | |
[super initWithNibName:@"NotesInsertViewController" | |
bundle:nil]; | |
UITabBarItem *tbi = [self tabBarItem]; | |
[tbi setTitle:@"Insert Note"]; | |
return self; | |
} | |
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { | |
return [self init]; | |
} | |
- (IBAction)insertNote:(id)sender { | |
NSString *post = [NSString stringWithFormat:@"noteId=%@&content=%@&createddate=8", [idField text], [contentField text]]; | |
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]; | |
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]]; | |
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease]; | |
[request setURL:[NSURL URLWithString:@"http://203.247.166.88:8000/NoteWS/notes"]]; | |
[request setHTTPMethod:@"POST"]; | |
[request setValue:postLength forHTTPHeaderField:@"Content-Length"]; | |
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; | |
[request setHTTPBody:postData]; | |
NSURLConnection *conn=[[NSURLConnection alloc] initWithRequest:request delegate:self]; | |
if (conn) | |
{ | |
} | |
else | |
{ | |
} | |
} | |
- (void)didReceiveMemoryWarning { | |
// Releases the view if it doesn't have a superview. | |
[super didReceiveMemoryWarning]; | |
// Release any cached data, images, etc. that aren't in use. | |
} | |
- (void)viewDidUnload { | |
[super viewDidUnload]; | |
// Release any retained subviews of the main view. | |
// e.g. self.myOutlet = nil; | |
} | |
- (void)dealloc { | |
[super dealloc]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment