1

enter image description here

When user click the INR amount Remaining Row will be disable enter image description here

Again when user click the USD Amount Row remaing rows should be Disable.

i posted my trying code please help me.

if([SelectedIndexPath containsIndex:indexPath.row])
{
    NSString *StrCurrency=[CurrencyArray objectAtIndex:indexPath.row];
    NSLog(@"%@",StrCurrency);

    if ([StrCurrency isEqualToString:@"USD"]) {
        cell.HideView.hidden=NO;
    }
    else{
        cell.HideView.hidden=YES;
    }
    NSLog(@"selected");

}
else
{
    NSLog(@"Unselected");
    cell.HideView.hidden=YES;
}
JAY RAPARKA
  • 1,353
  • 2
  • 13
  • 33
Siva Sankar
  • 543
  • 1
  • 4
  • 18

0 Answers0