Im currently trying to find a UIPickerTable within the UIPickerView.subviews ... so i loop through and do isKindOfClass:[UIPickerTable class] .... which works.. but because the header of UIPickerTable isn't exposed i get a warning that "receiver 'UIPickerTable' is a forward class and corresponding @interface may not exist'
In order to even be able to compile I do @class UIPickerTable, and obviously it want's me to #include it.
I'm wondering if there's a way to get around seeing this warning.
TIA!