@@ -36,11 +36,11 @@ Once you have a `YLPClient` object you can use the various search related functi
36
36
##### Search With Location
37
37
```objective-c
38
38
- (void)searchWithLocation:(NSString *)location
39
- currentLatLong:(nullable YLPCurrentLatLong *)cll
39
+ currentLatLong:(nullable YLPCoordinate *)cll
40
40
term:(nullable NSString *)term
41
41
limit:(NSUInteger)limit
42
42
offset:(NSUInteger)offset
43
- sort:(NSUInteger )sort
43
+ sort:(YLPSortType )sort
44
44
completionHandler:(YLPSearchCompletionHandler)completionHandler;
45
45
46
46
- (void)searchWithLocation:(NSString *)location
@@ -50,11 +50,11 @@ Once you have a `YLPClient` object you can use the various search related functi
50
50
##### Search With Geographic Bounding Box
51
51
``` objective-c
52
52
- (void )searchWithBounds:(YLPGeoBoundingBox *)bounds
53
- currentLatLong:(nullable YLPCurrentLatLong *)cll
53
+ currentLatLong:(nullable YLPCoordinate *)cll
54
54
term:(nullable NSString *)term
55
55
limit:(NSUInteger )limit
56
56
offset:(NSUInteger )offset
57
- sort:(NSUInteger )sort
57
+ sort:(YLPSortType )sort
58
58
completionHandler:(YLPSearchCompletionHandler)completionHandler;
59
59
60
60
- (void )searchWithBounds:(YLPGeoBoundingBox *)bounds
@@ -64,11 +64,11 @@ Once you have a `YLPClient` object you can use the various search related functi
64
64
##### Search With Geographic Coordinate
65
65
``` objective-c
66
66
- (void )searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordinate
67
- currentLatLong:(nullable YLPCurrentLatLong *)cll
67
+ currentLatLong:(nullable YLPCoordinate *)cll
68
68
term:(nullable NSString *)term
69
69
limit:(NSUInteger )limit
70
70
offset:(NSUInteger )offset
71
- sort:(NSUInteger )sort
71
+ sort:(YLPSortType )sort
72
72
completionHandler:(YLPSearchCompletionHandler)completionHandler;
73
73
74
74
- (void )searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordinate
0 commit comments