File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
JPSImagePickerControllerDemo Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,13 @@ - (void)launchImagePicker {
85
85
86
86
- (void )picker : (JPSImagePickerController *)picker didTakePicture : (UIImage *)picture {
87
87
picker.confirmationString = @" Zoom in to make sure you're happy with your picture" ;
88
- picker.confirmationOverlayString = @" " ;
89
- picker.confirmationOverlayBackgroundColor = [UIColor clearColor ];
88
+ picker.confirmationOverlayString = @" Analyzing Image... " ;
89
+ picker.confirmationOverlayBackgroundColor = [UIColor orangeColor ];
90
90
double delayInSeconds = 1 ;
91
91
dispatch_time_t popTime = dispatch_time (DISPATCH_TIME_NOW, (int64_t )(delayInSeconds * NSEC_PER_SEC));
92
92
dispatch_after (popTime, dispatch_get_main_queue (), ^(void ){
93
- picker.confirmationOverlayString = @" " ;
94
- picker.confirmationOverlayBackgroundColor = [UIColor clearColor ];
93
+ picker.confirmationOverlayString = @" Good Quality " ;
94
+ picker.confirmationOverlayBackgroundColor = [UIColor colorWithRed: 0 green: 0 . 8f blue: 0 alpha: 1 . 0f ];
95
95
});
96
96
}
97
97
You can’t perform that action at this time.
0 commit comments