| 1234567891011121314151617181920212223242526272829 |
- //
- // GMSAutocompleteMatchFragment.h
- // Google Maps SDK for iOS
- //
- // Copyright 2014 Google Inc.
- //
- // Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
- // Service: https://developers.google.com/maps/terms
- //
- /**
- * This class represents a matched fragment of a string. This is a contiguous range of characters
- * in a string, suitable for highlighting in an autocompletion UI.
- */
- @interface GMSAutocompleteMatchFragment : NSObject
- /**
- * The offset of the matched fragment. This is an index into a string. The character at this index
- * is the first matched character.
- */
- @property(nonatomic, readonly) NSUInteger offset;
- /**
- * The length of the matched fragment.
- */
- @property(nonatomic, readonly) NSUInteger length;
- @end
|