I needed a good list of every UIView subclass so I could see what I might want to use. Being unable to find a list of these, I built one myself. Here is the code I used (put inside a UIViewController source file):
extern "C" {
int objc_getClassList(Class*, int);
Class class_getSuperclass(Class cls);
const char * class_getName(Class cls);
}
- (void)viewDidLoad {
int numClasses = objc_getClassList(NULL, 0);
Class *classes = NULL;
classes = (Class*)malloc(sizeof(Class) * numClasses);
numClasses = objc_getClassList(classes, numClasses);
for(int i = 0; i < numClasses; i++) {
Class cls = classes[i];
for(Class c = cls; c = class_getSuperclass(c);) {
if(!strcmp(class_getName(c), "UIView")) {
cout << class_getName(cls) << endl;
break;
}
}
}
free(classes);
}
And here is the resulting list:
UIDimmingView
UIAccentedKeyCapStringView
UIDropShadowView
UIKeyboardGenericKeyView
UITableCountView
UIMovieScrubberTrackFillView
UIPreferencesControlTableCell
UIKeyboardLanguageIndicator
UIScrollView
UIMovieScrubberTrackOverlayView
UITabBar
UINavigationBarBackground
UIMovieScrubberTrackInnerShadowView
UIKeyboardSpaceKeyView
UIStatusBarServiceItemView
UIStatusBarTimeItemView
UITableSeparatorView
UISearchResultsTableView
UIShadowView
UIKeyboardReturnKeyView
UIZoomButtonWindow
UIKeyboardKeyView
UITabBarCustomizeView
UINavigationItemButtonView
UIMovieScrubberTrackMaskView
UIImageView
UIMovieScrubberTrackView
UISectionIndex
UICompositeImageView
UIStatusBarBatteryItemView
UITabBarCustomizeViewLegacy
UIStatusBarAirplaneModeItemView
UINavBarPrompt
UIModalView
UINavigationItemView
UILabel
UIClassicStatusBarImageView
UIClassicWindow
UIStatusBarBatteryPercentItemView
UIMovieScrubber
UITextLabel
UITableViewCellContentView
UIClipCornerView
_UIOnePartImageView
UIAutocorrectTextView
UIAutocorrectInlinePrompt
UIPageControllerScrollView
UIKeyboardEmojiScrollView
UITextView
EmojiScrollView
UISectionList
UIStatusBarForegroundView
UITableHeaderFooterView
UIWeekMonthDayTableCell
_UIPickerViewTopFrame
EmojiPageControl
UISectionTable
UIAutocorrectShadowView
UIStatusBarBackgroundView
UIWebTextRangeView
UIAutocorrectStringView
UIStatusBarIndicatorItemView
UIKeyboardEmojiCategoriesControl
UIWebDragDotView
UIAutocorrectImageView
UITableViewIndex
UIDateTableCell
UIKeyboardEmojiView
UIKeyboardCandidateBar
UISectionHeaderCell
UIKeyboardCandidateInlineScroller
UITableViewCellContentMirror
UIDefaultKeyboardInput
UIStatusBarItemView
UIKeyboardCandidateSafetyNetVie
UIMultiColumnsNavigationTransitionView
UIKeyboardLayout
UIGradientBar
UIKeyboardCandidateInlineTextLabelView
UI9PartImageView
UIWebDocumentView
UIKeyboardCandidateBarCell
UIKeyboardCandidateInline
UIUndoAlertView
UIWebFormAccessory
UIKeyboardCandidateShadowView
UIPreferencesTable
_UITableViewSeparatorView
UIStatusBarWindow
UIWebBrowserPDFPageLabel
UIWebBrowserView
KBCandidateCell
UITableViewCountView
UIPasscodeField
UISearchFieldBackgroundView
UIStatusBarSignalStrengthItemView
UITextFieldRoundedRectBackgroundView
UIWindow
UIFieldEditor
UITextMagnifierRangedRenderer
UIWebSelectPicker
UIKeyboardLayoutQWERTZLandscape
UIAlertTextView
UIAutoRotatingWindow
UIButtonBarCustomizeView
UITableViewLabel
UIToolbar
UITextMagnifierRanged
UIKeyboardAutomatic
UIOldSliderButton
_UILabeledPushButton
UIActivityIndicatorView
UITableCellDisclosureView
UILayoutContainerView
UITextEffectsWindow
UITransitionView
UIDOMHTMLOptGroupCell
UIKeyboardLayoutAZERTYLandscape
UIKeyboardLayoutQWERTZ
UIOldSliderFillView
UITableViewCellReorderControl
UIToolbarCustomizeViewLegacy
UITextContentView
UIKeyboardLayoutStar
UIDOMHTMLOptionPickerCell
_UISwitchSlider
UIInlineCandidateTextView
UIPlacardButton
UIControl
UIToolbarCustomizeView
UIKeyboardLayoutAZERTY
UIKeyboardLayoutQWERTYK48
UIPeripheralHostView
UISwitch
UIToolbarButton
UIKeyboardLayoutQWERTYLandscapeK48
InlineCandidateCell
UIKBKeyplaneView
UIToolbarTextButton
UnchargedButton
UIToolbarButtonBadge
UIKeyboardLayoutRoman
UIDatePicker
UIPickerView
UIDatePickerView
UIKeyboardLayoutEmoji
UIWebSelectionOutline
UIHighlightView
UIKeyboardLayoutQWERTY
UIWebSelectionView
UICheckeredPatternView
UIKeyboardSublayoutEMail
UITextField
UISwappableImageView
UIButtonBarBadgeBackground
UIWebSelectionHandle
UIButton
UIPickerTable
UIPushButton
UIGlassButton
UITextFieldAtomBackgroundView
UITextMagnifierRenderer
UIKeyboard
UIKeyboardReplacementImageView
UIKeyboardMinimizedView
UIKeyboardSublayout
UITexturedButton
_UIPickerViewWrappingTableCell
UIKeyboardImpl
UITouchDiagnosticsLayer
UIClippedImageView
UIRoundedCornerView
UIButtonLabel
_UIPickerViewSelectionBar
UIKeyboardEmojiPage
UITextFieldLabel
UITextFieldBorderView
UISelectionIndicatorView
UIKeyboardPartialLayoutView
UIRoundedRectButton
_UIPickerWheelView
UITextSelectionView
UIDateLabel
UIStatusBarBluetoothBatteryItemView
UITabBarButtonLabel
UIActionSheet
UINavigationBar
UITabBarButton
UINavigationButton
UIMovieScrubberEditingView
UIProgressIndicator
UIStatusBarBluetoothItemView
UIStatusBarActivityItemView
UIPageControl
UINavigationTransitionView
UISegmentedControl
UISelectionGrabber
UIProgressHUD
UITextRangeView
UITabBarButtonBadge
UIProgressBar
UITabBarSwappableImageView
UISegmentLabel
UIKBHandwritingView
UIAlertView
UITabBarBadgeBackground
UITableView
UISelectionGrabberDot
UISearchField
UICalloutBarButton
UIScrubberTimeView
UIKBCandidateView
UIImageAndTextTableCell
UIRemoteWindow
UIThreePartButton
UIRemoteView
UISegment
UICalloutBar
UIScrubberControl
UITableViewCell
UITabBarSelectionIndicatorView
UIStatusBarThermalColorItemView
_UITableViewCellRemoveControl
UIAlertSheetTableCell
_UITableCellGrabber
UICompletionTable
UIPopoverView
UIKBKeyView
UITableViewCellSelectedBackground
UIRemoveControl
UICalloutBarOverlay
UIInsertControl
UITableViewCellEditControl
UIRemoveControlMultiSelectButton
UIInputSwitcherSelectionExtraView
UIAlertSheetTextField
UISearchBarTextField
_UIAlertSheetTable
UISearchBarBackground
UIRemoveControlTextButton
UIPopoverViewBackgroundComponentView
UIKeyboardLayoutRomajiLandscape
UIInputSwitcherView
_UITableViewCellGrabber
UIKeyboardLayoutQWERTYLandscape
UIInputSwitcherShadowView
UITableViewCellDeleteConfirmationControl
WhiteView
UITextMagnifierCaret
UICalloutView
UICompletionTableViewCell
UIKeyboardLayoutRomaji
UIOnePartImageView
UISearchBar
UITableCellRemoveControl
_UITableViewCellEditControlMinusView
_UIAlertOverlayWindow
UIRemoveControlMinusButton
UIProgressView
UITableCell
_UITableViewCellDeleteConfirmationControl
UIKeyboardLayoutQZERTY
UIOldSliderControl
UIInputSwitcherTableCellBackgroundView
UIThreePartImageView
UISimpleTableCell
UITextMagnifierCaretRenderer
UIKeyboardLayoutQZERTYLandscape
UIStatusBarLockItemView
UIStatusBarDataNetworkItemView
UIWebView
UIWebTextView
UIWebTiledView
_UIPrefTableCellPiece
UITextFieldBackgroundView
UIPreferencesTableCellRemoveControl
UIPickerTableCell
UISnapshotView
UIStatusDimmingWindow
UIViewControllerWrapperView
UIGroupTableViewCellBackground
UIPreferencesTableCell
UIScroller
UIAccentedCharacterView
UIPreferencesDeleteTableCell
UIStatusBar
UIScrollerIndicator
UIGradientDimmingView
UISlider
UIMovieScrubberThumbnailView
UIPreferencesTextTableCell
_UIBookViewControllerView
UITable
Notice the _UIBookViewControllerview? Mm, tempting...




