From 7c7d898b6e8f09f066817399214e51f454ff7982 Mon Sep 17 00:00:00 2001 From: Siqi LIU Date: Sun, 8 Sep 2013 13:33:42 +0200 Subject: disable pangesture recognizer when pointer image is displayed Change-Id: Iea5895b98a05faee0772569665c980eac716927b --- ios/iosremote/iosremote/slideShowSwipeInList_iphone.m | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'ios/iosremote/iosremote/slideShowSwipeInList_iphone.m') diff --git a/ios/iosremote/iosremote/slideShowSwipeInList_iphone.m b/ios/iosremote/iosremote/slideShowSwipeInList_iphone.m index 01fbb9ccb113..ff65812653ca 100644 --- a/ios/iosremote/iosremote/slideShowSwipeInList_iphone.m +++ b/ios/iosremote/iosremote/slideShowSwipeInList_iphone.m @@ -169,8 +169,12 @@ dispatch_queue_t backgroundQueue; UIPageControl * pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(self.revealViewController.rearViewRevealWidth - 20, view.frame.origin.y + 3, 40, 20)]; pageControl.numberOfPages = 2; pageControl.currentPage = self.currentPage; - pageControl.currentPageIndicatorTintColor = [UIColor whiteColor]; - pageControl.pageIndicatorTintColor = [UIColor lightGrayColor]; + + if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0) + { + pageControl.currentPageIndicatorTintColor = [UIColor whiteColor]; + pageControl.pageIndicatorTintColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.7]; + } pageControl.tag = -100; view.tag = -99; label.tag = -98; -- cgit v1.2.3