From dd5dc611d6ec5d9aa75008d5cea2f0791c946657 Mon Sep 17 00:00:00 2001 From: Julian Rex Date: Fri, 15 Jun 2018 15:44:34 -0400 Subject: Switched to using @selector --- platform/ios/Integration Tests/MGLMapViewIntegrationTest.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m b/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m index 3240ffa2a8..8fb41d0d11 100644 --- a/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m +++ b/platform/ios/Integration Tests/MGLMapViewIntegrationTest.m @@ -1,5 +1,9 @@ #import "MGLMapViewIntegrationTest.h" +@interface MGLMapView (MGLMapViewIntegrationTest) +- (void)updateFromDisplayLink; +@end + @implementation MGLMapViewIntegrationTest - (void)setUp { @@ -90,7 +94,7 @@ // waitForExpectations below timer = [NSTimer scheduledTimerWithTimeInterval:1.0/30.0 target:self.mapView - selector:NSSelectorFromString(@"updateFromDisplayLink") + selector:@selector(updateFromDisplayLink) userInfo:nil repeats:YES]; } -- cgit v1.2.1