UITextField inside UITableViewCell to remove the problem

With iOS 8, I had a delete problem to remove a gesture in a custom UITableViewCell.

The problem arises from a UITextField inside a contentView of a UITableViewCell.

It seems that the problem is in iOS 8, I have the same code that works fine in iOS 7.

How can I save a UITextField for editing, and swipe for deleting gestures at the same time?

+4
source share
2 answers

The following worked for me:

    self.tableView.panGestureRecognizer.delaysTouchesBegan = YES;
+6
source

I found a workaround for my problem in iOS 8

UITextField UITextField, UIGestureRecognizer "".

#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)

@interface OMTextField : UITextField
@property (nonatomic,retain) NSNumber*canBecomeFirstResponderFlag;
@end

@implementation OMTextField

-(id)initWithFrame:(CGRect)frame
{
  self = [super initWithFrame:frame];
  if (self) {

    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) {

        _canBecomeFirstResponderFlag = @0;

        UIView*mask = [[UIView alloc] init];
        mask.translatesAutoresizingMaskIntoConstraints = NO;

        NSLayoutConstraint *maskT = [NSLayoutConstraint constraintWithItem:mask attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeTop multiplier:1.0 constant:0.0];
        NSLayoutConstraint *maskB = [NSLayoutConstraint constraintWithItem:mask attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeBottom multiplier:1.0 constant:0.0];
        NSLayoutConstraint *maskL = [NSLayoutConstraint constraintWithItem:mask attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0.0];
        NSLayoutConstraint *maskR = [NSLayoutConstraint constraintWithItem:mask attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeRight multiplier:1.0 constant:0.0];

        [self addSubview:mask];
        [self addConstraints:@[maskT,maskB,maskL,maskR]];

        UITapGestureRecognizer *singleFingerTap =
        [[UITapGestureRecognizer alloc] initWithTarget:self
                                                action:@selector(handleSingleTap:)];
        [mask addGestureRecognizer:singleFingerTap];

    }
  }
  return self;
}

-(BOOL)canBecomeFirstResponder{

  BOOL canBecomeFirstResponder;

  if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) {

    canBecomeFirstResponder = [_canBecomeFirstResponderFlag boolValue];

    _canBecomeFirstResponderFlag = @0;

  }
  else{
    canBecomeFirstResponder = [self.delegate textFieldShouldBeginEditing:self];
  }

  return canBecomeFirstResponder;
}

- (void)handleSingleTap:(UITapGestureRecognizer *)recognizer {

  _canBecomeFirstResponderFlag = @1;

  BOOL souldBecomeFirstResponder = [self.delegate textFieldShouldBeginEditing:self];

  if (souldBecomeFirstResponder) {
    [self becomeFirstResponder];
  }

}

@end
+1

All Articles