jasonmamy / cordova-wheel-selector-plugin

Wheel selector for Cordova (Android/iOS)
MIT License
65 stars 36 forks source link

Ios / iPad #18

Closed kotromeo closed 6 years ago

kotromeo commented 6 years ago

Wheel stacked on center of screen. How to move it to down ? ipad pro 12 9-inch 2nd generation - ios 11 1 2017-12-05 14-59-58

kotromeo commented 6 years ago

Self fount answer

need to replace CGRect sourceRect = CGRectMake(self.webView.superview.center.x, self.webView.superview.center.y, 1, 1);

by

CGRect sourceRect = CGRectMake(self.webView.superview.center.x, self.webView.superview.frame.origin.y + self.webView.superview.frame.size.height, 1, 1);