SENTLocationDataIterator
SWIFT_CLASS_NAMED("LocationDataIterator")
@interface SENTLocationDataIterator : NSObjectSENTLocationDataIterator API
next
next- (CLLocation * _Nullable)next;SENTLocationDataIterator *locationDataIterator; CLLocation *location; while ((location = [locationDataIterator next]) != nil) { // location object }
Last updated