Background Download File From URL

In your .h header file

@interface ###
{
	NSMutableData *fileData;
	NSURLConnection *connectionInProgress;
}

 (more...)

Get Device IP Address

This code is based on Shivan Raptor’s answer at http://stackoverflow.com/questions/7072989/iphone-ipad-how-to-get-my-ip-address-programmatically (more…)

TCP Client

This guide is based on the excellent Ray Wenderlick guide

(more…)

UDP Server

This is based on using the AsyncUdpSocket library.

(more…)

Using URL’s

Basic URL


	NSURL *url = [NSURL URLWithString:@"http://www.mydomain.com/some_folder/movie.mov"];
	//or
	NSString *urlAddress = @"http://www.google.com";
	NSURL *url = [NSURL URLWithString:urlAddress];

(more…)