Использование UIDevice currentDevice
объекта для доступа к информации об устройстве:
Модель:
[UIDevice currentDevice].model;
Версия:
[UIDevice currentDevice].version;
Использование ASIHTTPRequest
POST для отправки данных насервер.
-(void)sendDataToServer{
NSURL *url = [NSURL URLWithString:@"http://URL_TO_YOUR_SERVER"];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request addPostValue:[UIDevice currentDevice].model; forKey:@"model"];
[request addPostValue:[UIDevice currentDevice].version; forKey:@"version"];
[request startSynchronous];
NSError *error = [request error];
if (!error) {
//NO error
}else{
//Deal with error
}
}