I am currently upgrading an app that has a list in a UIWebView
. When the link is clicked inside the UIWebView
, a UIPickerView
is called on the app itself. The UIPickerView
has default view settings.
The issue is that the header text of the UIPickerView
is white against a light background. I need to modify this header text so that it is easily readable.
I have tried to set the UIWebView
as a UIPickerViewDelegate
, but none of the delegate methods are called.
How can I customize the view of the UIPickerView
that is called?