I have a UITextFiled in CustomCell. Then I am loading these Cell in UITableView of ProductDelivery Class. I am assigning some Initial Value to UITextField *txtQty CellForRowAtIndexPath Method.
My problem is that I want to validate the values entered by the User in UITextField not must be greater then by Above Cell UItextField.
When User Enter the value in UITextField CustomCell Class DidEndEding method class But I want to have this value in UITableView Class That is Product Delivery. So I can validate it and reload the UITableView with new Value. Could anyone assist me to solve this problem please??
@interface ProductDeliveryCell : UITableViewCell<UITextFieldDelegate>
@property(nonatomic,retain)IBOutlet UITextField *txtQty;
@end
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"ProDeliveryCell";
cell =(ProductDeliveryCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil)
{
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"ProductDeliveryCell" owner:self options:nil];
cell = [topLevelObjects objectAtIndex:0];
}
cell.txtQty.text=del.Qty;
return cell;
}