설명 없음

FIRInstanceIDURLQueryItem.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright 2019 Google
  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 <Foundation/Foundation.h>
  17. NS_ASSUME_NONNULL_BEGIN
  18. // Stand-in for NSURLQueryItem, which is only available on iOS 8.0 and up.
  19. @interface FIRInstanceIDURLQueryItem : NSObject
  20. @property(nonatomic, readonly) NSString *name;
  21. @property(nonatomic, readonly) NSString *value;
  22. + (instancetype)queryItemWithName:(NSString *)name value:(NSString *)value;
  23. - (instancetype)initWithName:(NSString *)name value:(NSString *)value;
  24. @end
  25. /**
  26. * Given an array of query items, construct a URL query. On iOS 8.0 and above, this will use
  27. * NSURLQueryItems internally to perform the string creation, and will be done manually in iOS
  28. * 7 and below.
  29. */
  30. NSString *FIRInstanceIDQueryFromQueryItems(NSArray<FIRInstanceIDURLQueryItem *> *queryItems);
  31. NS_ASSUME_NONNULL_END