//TWITTER BLACK MAGIC
NSMutableURLRequest *theRequest =[NSMutableURLRequest
requestWithURL:[NSURL URLWithString :
@"http://YOUR_TWITTER_UESERNAME:YOUR_TWITTER_PASSWORD@twitter.com/statuses/update.xml"]
cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody:[[NSString stringWithFormat:@"status=%@",theMessage]
dataUseEncoding:NSASCIIStringEncoding]];
NSURLResponse* response;NSError*error;
NSData result = [NSURLConnection sendSynchronousRequest:theRequest
returningResponse:&response error:&error];
NSLog(@"%@",[[[NSString alloc]initWithData:result
encoding:NSASCIIStringEncoding]autorelease]);
//END TWITTER BLACK MAGIC