Reputation: 12607
I'm creating my own ActionSheet class and I need to emulate size and font UIActionSheet's text.
How do I find size and font UIActionSheet's text?
Upvotes: 0
Views: 221
Reputation: 4792
you can't. Unless you hack its subViews.
UIActionSheet is a SubClass of UIView.
Gothrough all of its subView and their subVIew, and find any view which is kind of class UIButton, for that button view,get the textFont size.
Upvotes: 1