Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ZXTelParsedResult.m 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 "ZXTelParsedResult.h"
  17. @implementation ZXTelParsedResult
  18. - (id)initWithNumber:(NSString *)number telURI:(NSString *)telURI title:(NSString *)title {
  19. if (self = [super initWithType:kParsedResultTypeTel]) {
  20. _number = number;
  21. _telURI = telURI;
  22. _title = title;
  23. }
  24. return self;
  25. }
  26. + (id)telParsedResultWithNumber:(NSString *)number telURI:(NSString *)telURI title:(NSString *)title {
  27. return [[self alloc] initWithNumber:number telURI:telURI title:title];
  28. }
  29. - (NSString *)displayResult {
  30. NSMutableString *result = [NSMutableString stringWithCapacity:20];
  31. [ZXParsedResult maybeAppend:self.number result:result];
  32. [ZXParsedResult maybeAppend:self.title result:result];
  33. return result;
  34. }
  35. @end