Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ZXRSSFinderPattern.m 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright 2012 ZXing authors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import "ZXRSSFinderPattern.h"
  17. @implementation ZXRSSFinderPattern
  18. - (id)initWithValue:(int)value startEnd:(ZXIntArray *)startEnd start:(int)start end:(int)end rowNumber:(int)rowNumber {
  19. if (self = [super init]) {
  20. _value = value;
  21. _startEnd = startEnd;
  22. _resultPoints = [@[[[ZXResultPoint alloc] initWithX:(float)start y:(float)rowNumber],
  23. [[ZXResultPoint alloc] initWithX:(float)end y:(float)rowNumber]] mutableCopy];
  24. }
  25. return self;
  26. }
  27. - (BOOL)isEqual:(id)object {
  28. if (![object isKindOfClass:[ZXRSSFinderPattern class]]) {
  29. return NO;
  30. }
  31. ZXRSSFinderPattern *that = (ZXRSSFinderPattern *)object;
  32. return self.value == that.value;
  33. }
  34. - (NSUInteger)hash {
  35. return self.value;
  36. }
  37. @end