- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *movieseled = [list objectAtIndex:indexPath.row];
NSString *msg = [NSString stringWithFormat:@"You are selected %@", movieseled];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"select" message:msg delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}