Voloda2
Voloda2

Reputation: 12607

How do I find size and font UIActionSheet's text?

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?

enter image description here

Upvotes: 0

Views: 221

Answers (1)

santhu
santhu

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

Related Questions