Thumbnail For Daily Motion Video Behalf of video id
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 100.0f, 100.0f)];
NSString *ImageURL = @"http://www.dailymotion.com/thumbnail/video/x44miyn";
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:ImageURL]];
imageView.image = [UIImage imageWithData:imageData];
[self.view addSubview:imageView];